From f71fcfc9951fb86e973997e61044fc674810584f Mon Sep 17 00:00:00 2001 From: Ben Kearns <35475+bkearns@users.noreply.github.com> Date: Sat, 25 Jul 2026 15:49:30 -0700 Subject: [PATCH 01/16] feat(xtask): make materialization audit coverage exhaustive by default (t_2487eeb7) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The audited-crate set was a hand-maintained list, which made OOM-guard coverage opt-in — and opt-in coverage rots. `ferrosa-graph` and `ferrosa-sparql` both grew query-sized serving paths, and shipped real materialization OOMs, while sitting entirely outside the gate. The audit reported "no findings" the whole time. Coverage is now exhaustive: every workspace member must be either audited or listed in NON_SERVING_CRATES with the reason it owns no query-sized path. A crate in neither set produces an `unclassified-crate` finding, so adding a crate fails the audit instead of silently widening the blind spot. The check runs in the binary rather than only in a unit test, and an unreadable workspace manifest is itself a finding — unknown coverage must never read as a clean run. Also teaches `returns-vec-partition-or-row` about `Vec`. `VirtualTable::read` returns a whole table while `visit_rows` streams, and the trait docs already tell large/live tables to override the visitor; this is what holds them to it. Audited crates: 6 -> 15. Findings: 0 -> 82, all pre-existing materialization the gate could not previously see. 21 of them are in crates it was ALREADY auditing, hidden purely by the missing VirtualRow shape. One is confirmed class A (t_250fa355: read_anchor_partitions range_read arm, which its own doc comment already called "the unbounded materialization"). The 82 are baselined in oom-audit-allow.toml marked NOT INDIVIDUALLY TRIAGED, with a short expiry (2026-10-01) so they fail the gate rather than becoming a permanent rubber stamp. The reasons deliberately do not claim these sites are safe. Triage is t_a49d88c3. Known gap: entries omitting `symbol` suppress a whole (file, rule) pair, so a new violation inside an already-allowlisted file is not caught (verified). Tracked as t_e1d5f83c. Verified: enforce exits 0 today and 1 after the baseline expiry; a new materializing fn in a newly-audited crate is caught (exit 1). --- specs/p0-oom-guard/blueprint.md | 29 +- specs/p0-oom-guard/oom-audit-allow.toml | 379 ++++++++++++++++++++++++ xtask/src/main.rs | 20 +- xtask/src/oom_audit.rs | 272 ++++++++++++++++- 4 files changed, 682 insertions(+), 18 deletions(-) diff --git a/specs/p0-oom-guard/blueprint.md b/specs/p0-oom-guard/blueprint.md index fe903e9f..0fee9a1f 100644 --- a/specs/p0-oom-guard/blueprint.md +++ b/specs/p0-oom-guard/blueprint.md @@ -69,10 +69,8 @@ flowchart TD ``` ### Layer 1 — Static AST audit (`cargo xtask p0-oom-audit`) -New `xtask` crate (none exists today). Uses `syn` over `ferrosa-cql`, -`ferrosa-cluster`, `ferrosa-storage`, `ferrosa-row-bridge`, `ferrosa-net`, -`ferrosa-index` (the last two carry the streaming pipeline: lane frames and -scan/FTS hit paths). Fails on: +New `xtask` crate (none exists today). Uses `syn` over the crates listed in +`oom_audit::AUDIT_CRATES`. Fails on: - a fn whose name contains `stream` returning `Vec`/`Result>`/Vec-alias; - production returns of `Vec`/`Vec` not whitelisted; - `Vec::with_capacity(limit)` where `limit` derives from paging/query/user input; @@ -80,6 +78,29 @@ scan/FTS hit paths). Fails on: - CQL broad-scan call sites invoking `range_read_limited_rows` / `coordinate_*_limited_rows` unwhitelisted. Whitelist: `specs/p0-oom-guard/oom-audit-allow.toml` (reason/bound/owner/expiry). +**Coverage is exhaustive by default (2026-07 extension, forge t_2487eeb7).** The +audited-crate set was originally a hand-maintained list, which made coverage +opt-in — and opt-in coverage rots. `ferrosa-graph` and `ferrosa-sparql` both grew +query-sized serving paths, and shipped real materialization OOMs, while sitting +entirely outside the gate. + +Every workspace member must now be either in `AUDIT_CRATES` or in +`NON_SERVING_CRATES` with the reason it owns no query-sized path. A crate in +neither set produces an `unclassified-crate` finding, so a newly added crate +fails the audit instead of silently widening the blind spot. The check runs in +the binary (not only in unit tests) and treats an unreadable workspace manifest +as a finding — unknown coverage must never read as a clean run. + +The same change taught `returns-vec-partition-or-row` about `Vec`. +`VirtualTable::read` returns a whole table while `visit_rows` streams, and the +trait docs already tell large/live tables to override the visitor; the rule is +what holds them to it. That shape alone surfaced 21 findings inside crates the +gate was *already* auditing. + +Known gap: allow entries that omit `symbol` suppress a whole (file, rule) pair, +so a *new* violation inside an already-allowlisted file is not caught. Tracked +as forge t_e1d5f83c; baseline triage is forge t_a49d88c3. + **Move-based-streaming Clone/Copy rules (2026-07 extension).** The original `clone-on-row-data` matched only literal `partition/rows/cells` receivers; six confirmed blind spots (`.cloned()` adapters, closure-param clones, renamed diff --git a/specs/p0-oom-guard/oom-audit-allow.toml b/specs/p0-oom-guard/oom-audit-allow.toml index 4f70ee61..303b8c3a 100644 --- a/specs/p0-oom-guard/oom-audit-allow.toml +++ b/specs/p0-oom-guard/oom-audit-allow.toml @@ -860,3 +860,382 @@ symbol = "split_sorted_partitions_into_shards" reason = "re-chunks an already-materialized, flush-threshold-bounded Vec into disjoint per-shard owned Vecs for parallel rayon SSTable encode; no new scan materialization, owned chunks inherent to cross-thread hand-off." owner = "bkearns" expires = "2027-07-01" + +# --------------------------------------------------------------------------- +# Group 3 — baseline for crates that entered audit scope in t_2487eeb7 +# +# `AUDIT_CRATES` went from 6 crates to 15, and the `returns-vec-partition-or-row` +# rule gained the `Vec` shape. Together those surfaced 82 findings. +# They are PRE-EXISTING materialization that the gate simply could not see — not +# new regressions introduced by this change. +# +# These entries are deliberately marked NOT INDIVIDUALLY TRIAGED. They do not +# assert the sites are safe; they record that the gate now sees them and that +# classification is owed. The expiry is short (2026-10-01) so they fail the gate +# rather than becoming a permanent rubber stamp. Triage is forge t_a49d88c3; +# the one confirmed class-A site is forge t_250fa355. +# --------------------------------------------------------------------------- + +[[allow]] +path = "ferrosa-cql/src/observability.rs" +rule = "collect-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing collect-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-cql/src/observability.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-cql/src/virtual_tables/active_queries.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-cql/src/virtual_tables/alerts.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-cql/src/virtual_tables/billing.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-cql/src/virtual_tables/connections.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-cql/src/virtual_tables/consolidation_status.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-cql/src/virtual_tables/full_scan_reasons.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-cql/src/virtual_tables/index_usage.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-cql/src/virtual_tables/materialization.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-cql/src/virtual_tables/peers_v2.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-cql/src/virtual_tables/query_fingerprints.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-cql/src/virtual_tables/rrd_runtime_settings.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-cql/src/virtual_tables/stubs.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-cql/src/virtual_tables/table_access.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-flight/src/convert.rs" +rule = "cqlvalue-row-accumulation" +reason = "t_a49d88c3: pre-existing cqlvalue-row-accumulation in ferrosa-flight, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-graph/src/adjacency/observer.rs" +rule = "with-capacity-limit" +reason = "t_a49d88c3: pre-existing with-capacity-limit in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-graph/src/adjacency/reconcile.rs" +rule = "clone-on-row-data" +reason = "t_a49d88c3: pre-existing clone-on-row-data in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-graph/src/adjacency/reconcile.rs" +rule = "materializing-range-read-call-site" +reason = "t_a49d88c3: pre-existing materializing-range-read-call-site in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-graph/src/bolt/codec.rs" +rule = "with-capacity-limit" +reason = "t_a49d88c3: pre-existing with-capacity-limit in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-graph/src/bolt/server.rs" +rule = "copies-row-data-arg" +reason = "t_a49d88c3: pre-existing copies-row-data-arg in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-graph/src/engine.rs" +rule = "cloned-stream-elements" +reason = "t_a49d88c3: pre-existing cloned-stream-elements in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-graph/src/executor/expand.rs" +rule = "clone-on-row-data" +reason = "t_a49d88c3: pre-existing clone-on-row-data in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-graph/src/executor/expand.rs" +rule = "cloned-stream-elements" +reason = "t_a49d88c3: pre-existing cloned-stream-elements in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-graph/src/executor/expand.rs" +rule = "materializing-range-read-call-site" +reason = "t_a49d88c3: pre-existing materializing-range-read-call-site in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-graph/src/executor/expand.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-graph/src/executor/expand.rs" +rule = "stream-push-accumulation" +reason = "t_a49d88c3: pre-existing stream-push-accumulation in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-graph/src/executor/expand.rs" +rule = "with-capacity-limit" +reason = "t_a49d88c3: pre-existing with-capacity-limit in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-graph/src/executor/leapfrog.rs" +rule = "materializing-range-read-call-site" +reason = "t_a49d88c3: pre-existing materializing-range-read-call-site in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-graph/src/executor/stream.rs" +rule = "stream-push-accumulation" +reason = "t_a49d88c3: pre-existing stream-push-accumulation in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-graph/src/executor/varpath.rs" +rule = "materializing-range-read-call-site" +reason = "t_a49d88c3: pre-existing materializing-range-read-call-site in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-graph/src/http.rs" +rule = "clone-on-row-data" +reason = "t_a49d88c3: pre-existing clone-on-row-data in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-postgres/src/catalog.rs" +rule = "collect-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing collect-vec-partition-or-row in ferrosa-postgres, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-postgres/src/storage_provider.rs" +rule = "stream-push-accumulation" +reason = "t_a49d88c3: pre-existing stream-push-accumulation in ferrosa-postgres, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-schema/src/system/aggregate_tables.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-schema, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-sparql/src/executor.rs" +rule = "clone-in-scan-closure" +reason = "t_a49d88c3: pre-existing clone-in-scan-closure in ferrosa-sparql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-sparql/src/executor.rs" +rule = "server-side-result-cap" +reason = "t_a49d88c3: pre-existing server-side-result-cap in ferrosa-sparql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-sparql/src/property_path.rs" +rule = "stream-push-accumulation" +reason = "t_a49d88c3: pre-existing stream-push-accumulation in ferrosa-sparql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-sql/src/exec.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-sql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-sql/src/plan.rs" +rule = "collect-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing collect-vec-partition-or-row in ferrosa-sql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-sql/src/plan.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-sql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-sql/src/provider.rs" +rule = "cloned-stream-elements" +reason = "t_a49d88c3: pre-existing cloned-stream-elements in ferrosa-sql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-sstable/src/reader.rs" +rule = "copies-row-data-arg" +reason = "t_a49d88c3: pre-existing copies-row-data-arg in ferrosa-sstable, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-sstable/src/reader.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-sstable, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-sstable/src/reader.rs" +rule = "server-side-result-cap" +reason = "t_a49d88c3: pre-existing server-side-result-cap in ferrosa-sstable, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-sstable/src/reader.rs" +rule = "with-capacity-limit" +reason = "t_a49d88c3: pre-existing with-capacity-limit in ferrosa-sstable, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-sstable/src/trie/walker.rs" +rule = "server-side-result-cap" +reason = "t_a49d88c3: pre-existing server-side-result-cap in ferrosa-sstable, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-sstable/src/writer.rs" +rule = "clone-on-row-data" +reason = "t_a49d88c3: pre-existing clone-on-row-data in ferrosa-sstable, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-storage/src/index/virtual_table.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-storage, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-storage/src/virtual_tables.rs" +rule = "returns-vec-partition-or-row" +reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-storage, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-view/src/delta.rs" +rule = "clone-in-scan-closure" +reason = "t_a49d88c3: pre-existing clone-in-scan-closure in ferrosa-view, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" + +[[allow]] +path = "ferrosa-view/src/delta.rs" +rule = "cloned-stream-elements" +reason = "t_a49d88c3: pre-existing cloned-stream-elements in ferrosa-view, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +owner = "storage" +expires = "2026-10-01" diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 4f71a214..c546524b 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -14,19 +14,10 @@ use std::process::ExitCode; use anyhow::Context; -use oom_audit::{audit_paths, expired_allow_findings, Allowlist, Finding, DEFAULT_TODAY}; - -/// Crates whose `src/` dirs are scanned (blueprint §3 Layer 1). `ferrosa-net` -/// and `ferrosa-index` carry the streaming pipeline (lane frames, scan/FTS -/// hits) — clones there defeat move streaming the same as in the core four. -const AUDIT_CRATES: &[&str] = &[ - "ferrosa-cql", - "ferrosa-cluster", - "ferrosa-storage", - "ferrosa-row-bridge", - "ferrosa-net", - "ferrosa-index", -]; +use oom_audit::{ + audit_paths, coverage_findings, expired_allow_findings, Allowlist, Finding, AUDIT_CRATES, + DEFAULT_TODAY, +}; const ALLOW_FILE: &str = "specs/p0-oom-guard/oom-audit-allow.toml"; @@ -111,6 +102,9 @@ fn p0_oom_audit(args: &[String]) -> anyhow::Result { let mut findings = audit_paths(&roots, &allow); findings.extend(expired_allow_findings(&allow, &today)); + // Coverage is part of the verdict: an unclassified crate is a blind spot, + // and a blind spot must not be reported as a clean run. + findings.extend(coverage_findings(&root)); findings.sort_by(|a, b| (a.path.as_str(), a.line).cmp(&(b.path.as_str(), b.line))); print_findings(&findings, &root); diff --git a/xtask/src/oom_audit.rs b/xtask/src/oom_audit.rs index 396593ed..c2538c15 100644 --- a/xtask/src/oom_audit.rs +++ b/xtask/src/oom_audit.rs @@ -15,6 +15,167 @@ use syn::visit::Visit; /// Lib code never reads the system clock (deterministic, testable). pub const DEFAULT_TODAY: &str = "2026-06-29"; +// --------------------------------------------------------------------------- +// Audit coverage policy +// --------------------------------------------------------------------------- +// +// The audited-crate set used to be a hand-maintained list in `main.rs`. That +// made coverage opt-in, and opt-in coverage silently rots: `ferrosa-graph` and +// `ferrosa-sparql` both grew query-sized serving paths (and shipped real +// materialization OOMs) while sitting entirely outside the gate. +// +// Coverage is therefore exhaustive by default. Every workspace member must be +// either audited or listed in `NON_SERVING_CRATES` with the reason it owns no +// query-sized path. A new crate belongs to neither set, so +// `every_workspace_crate_is_classified` fails until someone classifies it — +// the decision is forced at review time instead of being silently skipped. + +/// Crates whose `src/` dirs are scanned (blueprint §3 Layer 1). +pub const AUDIT_CRATES: &[&str] = &[ + "ferrosa-cql", + "ferrosa-cluster", + "ferrosa-storage", + "ferrosa-row-bridge", + "ferrosa-net", + "ferrosa-index", + "ferrosa-graph", + "ferrosa-sparql", + "ferrosa-sstable", + "ferrosa-sql", + "ferrosa-postgres", + "ferrosa-flight", + "ferrosa-schema", + "ferrosa-view", + "ferrosa-cdc", +]; + +/// Workspace members deliberately outside the audit, each paired with the +/// reason it carries no query-sized serving/scan path. Reasons are load-bearing: +/// they are what a reviewer checks when a crate later grows a read path. +pub const NON_SERVING_CRATES: &[(&str, &str)] = &[ + ( + "ferrosa", + "binary entrypoint: wires listeners and background tasks; the query paths it \ + serves live in the audited crates it calls into", + ), + ( + "ferrosa-common", + "shared scalar value types (Token, PartitionKey, CellValue); holds no result set", + ), + ( + "ferrosa-session", + "per-connection session state; sized by connection count, not by result rows", + ), + ( + "ferrosa-sched", + "task scheduling and admission control; moves no row data", + ), + ( + "ferrosa-worker", + "background task lifecycle management; moves no row data", + ), + ( + "ferrosa-udf", + "UDF parsing and Wasmtime compilation; operates per-value, not per-result-set", + ), + ( + "ferrosa-index-builder", + "standalone build-side binary; reads via its own streaming S3/HTTP path, not a \ + serving read path", + ), + ( + "ferrosa-ctl", + "operator CLI/TUI client: materializes only what an operator paged into a \ + terminal, and cannot OOM a serving node", + ), + ( + "ferrosa-loadgen", + "load-generation harness; a test client rather than a serving path", + ), + ( + "ferrosa-jepsen", + "distributed-correctness test harness; not shipped in the serving binary", + ), + ( + "ferrosa-sim", + "deterministic simulation harness; not shipped in the serving binary", + ), + ( + "xtask", + "build tooling: hosts this audit, whose own rule fixtures and messages contain \ + the very patterns it matches", + ), +]; + +#[derive(Debug, Deserialize)] +struct WorkspaceManifest { + workspace: WorkspaceTable, +} + +#[derive(Debug, Deserialize)] +struct WorkspaceTable { + members: Vec, +} + +/// Parse `[workspace] members` from the workspace manifest at `root`. +pub fn workspace_members(root: &Path) -> anyhow::Result> { + let manifest_path = root.join("Cargo.toml"); + let src = std::fs::read_to_string(&manifest_path)?; + let manifest: WorkspaceManifest = toml::from_str(&src)?; + Ok(manifest.workspace.members) +} + +/// Workspace members that are neither audited nor explicitly excluded. +/// A non-empty result means audit coverage has an unreviewed hole. +pub fn unclassified_crates(members: &[String]) -> Vec { + members + .iter() + .filter(|m| { + !AUDIT_CRATES.contains(&m.as_str()) + && !NON_SERVING_CRATES.iter().any(|(name, _)| name == m) + }) + .cloned() + .collect() +} + +/// Coverage findings for the workspace at `root`: one per unclassified member. +/// +/// The gate reports these itself rather than leaving them to a unit test, so a +/// crate added in CI fails the audit instead of quietly widening the blind spot. +/// A manifest that cannot be read is itself a finding — an unreadable workspace +/// means coverage is unknown, which must never read as "clean". +pub fn coverage_findings(root: &Path) -> Vec { + let manifest = root.join("Cargo.toml"); + let members = match workspace_members(root) { + Ok(m) => m, + Err(e) => { + return vec![Finding { + path: manifest.to_string_lossy().into_owned(), + line: 1, + rule: rule::UNCLASSIFIED_CRATE, + message: format!( + "cannot determine audit coverage: workspace manifest unreadable ({e})" + ), + symbol: String::new(), + }] + } + }; + unclassified_crates(&members) + .into_iter() + .map(|name| Finding { + path: manifest.to_string_lossy().into_owned(), + line: 1, + rule: rule::UNCLASSIFIED_CRATE, + message: format!( + "workspace crate `{name}` is neither audited nor listed as non-serving, so the \ + materialization gate ignores it; add it to AUDIT_CRATES or to \ + NON_SERVING_CRATES with the reason it owns no query-sized path" + ), + symbol: name, + }) + .collect() +} + // --------------------------------------------------------------------------- // Findings + allowlist // --------------------------------------------------------------------------- @@ -34,6 +195,7 @@ pub struct Finding { /// Rule ids. Kept as constants so tests and allowlist entries can't typo them. pub mod rule { + pub const UNCLASSIFIED_CRATE: &str = "unclassified-crate"; pub const STREAM_RETURNS_VEC: &str = "stream-returns-vec"; pub const RETURNS_VEC_PARTITION_OR_ROW: &str = "returns-vec-partition-or-row"; pub const WITH_CAPACITY_LIMIT: &str = "with-capacity-limit"; @@ -228,8 +390,13 @@ fn is_limited_rows_call(method: &str) -> bool { } /// `Partition`/`Row` element idents that signal broad-scan row materialization. +/// +/// `VirtualRow` is included because `VirtualTable::read` returns +/// `Vec` for a whole table while `visit_rows` streams; the trait +/// docs already tell large/live tables to override the visitor, and this is +/// what holds them to it. fn is_partition_or_row_ident(id: &str) -> bool { - id == "Partition" || id == "Row" + id == "Partition" || id == "Row" || id == "VirtualRow" } /// If `ty` (through an outer `Vec`/`Result`) is a `Vec` / `Vec`, @@ -1377,6 +1544,86 @@ mod tests { Allowlist::default() } + /// Repo root: `xtask/`'s parent is the workspace root. + fn repo_root() -> PathBuf { + PathBuf::from(env!("CARGO_MANIFEST_DIR")) + .parent() + .map(PathBuf::from) + .expect("xtask crate dir has a parent workspace root") + } + + // -- Audit coverage policy --------------------------------------------- + + /// Audit coverage must be exhaustive over the workspace: every member is + /// either scanned or carries a written reason it owns no query-sized path. + /// + /// This is the invariant that `ferrosa-graph` / `ferrosa-sparql` violated — + /// both grew serving paths (and real materialization OOMs) while silently + /// outside the hand-maintained audit list. + #[test] + fn every_workspace_crate_is_classified() { + let members = workspace_members(&repo_root()).expect("workspace manifest parses"); + assert!( + members.len() > 10, + "sanity: expected a multi-crate workspace, got {members:?}" + ); + + let unclassified = unclassified_crates(&members); + assert!( + unclassified.is_empty(), + "these workspace crates are neither audited nor explicitly excluded, so the \ + materialization gate silently ignores them: {unclassified:?}\n\ + Add each to AUDIT_CRATES, or to NON_SERVING_CRATES with the reason it owns \ + no query-sized serving path." + ); + } + + /// The real workspace is fully classified, so the gate reports no coverage + /// holes. This is the runtime counterpart of the policy test above. + #[test] + fn coverage_findings_are_empty_for_the_classified_workspace() { + let f = coverage_findings(&repo_root()); + assert!(f.is_empty(), "unexpected coverage holes: {f:?}"); + } + + /// An unreadable workspace manifest means coverage is UNKNOWN. Unknown must + /// surface as a finding — never as an empty (clean-looking) result. + #[test] + fn unreadable_manifest_is_a_finding_not_a_clean_run() { + let missing = PathBuf::from("/nonexistent-ferrosa-root-for-test"); + let f = coverage_findings(&missing); + assert_eq!(f.len(), 1, "expected exactly one coverage finding: {f:?}"); + assert_eq!(f[0].rule, rule::UNCLASSIFIED_CRATE); + assert!( + f[0].message.contains("unreadable"), + "finding must say coverage could not be determined: {:?}", + f[0].message + ); + } + + /// An exclusion without a real reason is a rubber stamp, not a decision. + #[test] + fn every_non_serving_exclusion_carries_a_reason() { + for (name, reason) in NON_SERVING_CRATES { + assert!( + reason.len() >= 20, + "crate `{name}` is excluded from the materialization audit with a \ + non-explanatory reason: {reason:?}" + ); + } + } + + /// A crate cannot be both audited and excluded — that hides which one wins. + #[test] + fn audited_and_excluded_sets_are_disjoint() { + for (name, _) in NON_SERVING_CRATES { + assert!( + !AUDIT_CRATES.contains(name), + "crate `{name}` is both audited and listed as non-serving" + ); + } + } + // -- Rule (a): stream-named fn returning Vec --------------------------- #[test] fn rule_a_fires_on_stream_fn_returning_vec() { @@ -1409,6 +1656,29 @@ mod tests { assert_eq!(f.len(), 0, "no findings at all expected: {f:?}"); } + /// `VirtualTable::read` returns `Vec` while `visit_rows` is the + /// streaming path the trait docs steer large/live tables toward. The gate + /// must see that materializing shape, or "should override visit_rows" stays + /// advice no reviewer is held to. + #[test] + fn rule_b_fires_on_vec_virtual_row() { + let src = r#" + fn read(&self, p: Option<&RowPredicate>) -> Vec { Vec::new() } + fn visit_rows(&self, p: Option<&RowPredicate>, visit: &mut dyn FnMut(VirtualRow)) {} + "#; + let f = audit_source("x.rs", src, &no_allow()); + let hits: Vec<_> = f + .iter() + .filter(|x| x.rule == rule::RETURNS_VEC_PARTITION_OR_ROW) + .collect(); + assert_eq!( + hits.len(), + 1, + "the Vec return fires; the streaming visitor does not: {f:?}" + ); + assert_eq!(hits[0].symbol, "read"); + } + // -- Rule (b): returns Vec/Vec ------------------------- #[test] fn rule_b_fires_on_vec_partition_and_vec_row() { From 227a8c786a77b250975692c203090cf446ecb152 Mon Sep 17 00:00:00 2001 From: Ben Kearns <35475+bkearns@users.noreply.github.com> Date: Sat, 25 Jul 2026 15:54:40 -0700 Subject: [PATCH 02/16] docs(oom-guard): replace untriaged baseline reasons with real triage findings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The t_2487eeb7 baseline marked all 52 entries "NOT individually triaged". That was true when written; it is no longer true for ferrosa-graph and ferrosa-sparql, and an allowlist that understates what is known is as misleading as one that overstates it. 14 entries now carry the actual bound: schema-arity with_capacity, single-row clones, max_result_rows-bounded copies, the fail-loud max_message_size guard, and two genuine rule misfires (.cloned() over an Option; SET/REMOVE loops whose push targets a per-column vec, not the stream). 5 entries are re-marked CONFIRMED REAL rather than merely untriaged — the range_read call sites in expand.rs, leapfrog.rs, varpath.rs and reconcile.rs. Their expiry moves in to 2026-09-15 so known bugs surface before unknown ones. Root cause and fix plan: t_bc5f0e6f (WritePath::range_read is a materializing wrapper over an already-existing stream, so each is an in-place swap). Notable corrections to earlier belief: - sparql DEFAULT_MAX_ROWS is NOT a silent result cap. Crossing it raises SparqlError::Execution — a loud error, never a truncation. It prevents OOM rather than causing it, so the entry records that instead of implying a debt. - The Bolt codec with_capacity sites are bounded for query data, but the count is wire-declared and decoded pre-auth. Filed separately as t_3e665492 (allocation amplification), since it is a different failure mode than materializing query results. 33 entries in the remaining crates stay honestly marked untriaged (t_a49d88c3). Verified: enforce exits 0 today; the confirmed-real entries fire as expired on 2026-09-16; 53 xtask tests green. --- specs/p0-oom-guard/oom-audit-allow.toml | 48 ++++++++++++------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/specs/p0-oom-guard/oom-audit-allow.toml b/specs/p0-oom-guard/oom-audit-allow.toml index 303b8c3a..404911c9 100644 --- a/specs/p0-oom-guard/oom-audit-allow.toml +++ b/specs/p0-oom-guard/oom-audit-allow.toml @@ -991,112 +991,112 @@ expires = "2026-10-01" [[allow]] path = "ferrosa-graph/src/adjacency/observer.rs" rule = "with-capacity-limit" -reason = "t_a49d88c3: pre-existing with-capacity-limit in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: capacity is the partition-key/clustering component count (schema arity, ~1-5), not result size." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-graph/src/adjacency/reconcile.rs" rule = "clone-on-row-data" -reason = "t_a49d88c3: pre-existing clone-on-row-data in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: one row cloned per single-mutation write(); never accumulated." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-graph/src/adjacency/reconcile.rs" rule = "materializing-range-read-call-site" -reason = "t_a49d88c3: pre-existing materializing-range-read-call-site in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "CONFIRMED REAL materialization, not a false positive. Tracked for fix as t_bc5f0e6f; delete this entry when the call site streams." owner = "storage" -expires = "2026-10-01" +expires = "2026-09-15" [[allow]] path = "ferrosa-graph/src/bolt/codec.rs" rule = "with-capacity-limit" -reason = "t_a49d88c3: pre-existing with-capacity-limit in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED for query data: one Bolt frame's element count, not query-sized. NOTE the wire-declared count is a pre-auth allocation-amplification issue tracked separately as t_3e665492." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-graph/src/bolt/server.rs" rule = "copies-row-data-arg" -reason = "t_a49d88c3: pre-existing copies-row-data-arg in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: extend is guarded by the explicit fail-loud max_message_size check at server.rs:627." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-graph/src/engine.rs" rule = "cloned-stream-elements" -reason = "t_a49d88c3: pre-existing cloned-stream-elements in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: copies an already-materialized GraphResult, bounded by config.max_result_rows." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-graph/src/executor/expand.rs" rule = "clone-on-row-data" -reason = "t_a49d88c3: pre-existing clone-on-row-data in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: a single row per write(), reused after the clone." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-graph/src/executor/expand.rs" rule = "cloned-stream-elements" -reason = "t_a49d88c3: pre-existing cloned-stream-elements in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: FALSE POSITIVE: row.get(idx).cloned()/.copied() over an Option is one cell, not a stream chain." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-graph/src/executor/expand.rs" rule = "materializing-range-read-call-site" -reason = "t_a49d88c3: pre-existing materializing-range-read-call-site in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "CONFIRMED REAL materialization, not a false positive. Tracked for fix as t_bc5f0e6f; delete this entry when the call site streams." owner = "storage" -expires = "2026-10-01" +expires = "2026-09-15" [[allow]] path = "ferrosa-graph/src/executor/expand.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "CONFIRMED REAL materialization, not a false positive. Tracked for fix as t_250fa355; delete this entry when the call site streams." owner = "storage" -expires = "2026-10-01" +expires = "2026-09-15" [[allow]] path = "ferrosa-graph/src/executor/expand.rs" rule = "stream-push-accumulation" -reason = "t_a49d88c3: pre-existing stream-push-accumulation in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: FALSE POSITIVE: streaming SET/REMOVE loops consume rows one at a time; push targets a per-column assignment vec sized by SET-clause arity, not the stream." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-graph/src/executor/expand.rs" rule = "with-capacity-limit" -reason = "t_a49d88c3: pre-existing with-capacity-limit in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: composite/clustering key component count (schema arity), not result size." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-graph/src/executor/leapfrog.rs" rule = "materializing-range-read-call-site" -reason = "t_a49d88c3: pre-existing materializing-range-read-call-site in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "CONFIRMED REAL materialization, not a false positive. Tracked for fix as t_bc5f0e6f; delete this entry when the call site streams." owner = "storage" -expires = "2026-10-01" +expires = "2026-09-15" [[allow]] path = "ferrosa-graph/src/executor/stream.rs" rule = "stream-push-accumulation" -reason = "t_a49d88c3: pre-existing stream-push-accumulation in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: collect_to_graph_result breaks at max_rows. collect_rows is uncapped BY DESIGN (the caller bounds the stream so the limit stops upstream production); its 3 production callers are under verification in t_daf898e1." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-graph/src/executor/varpath.rs" rule = "materializing-range-read-call-site" -reason = "t_a49d88c3: pre-existing materializing-range-read-call-site in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "CONFIRMED REAL materialization, not a false positive. Tracked for fix as t_bc5f0e6f; delete this entry when the call site streams." owner = "storage" -expires = "2026-10-01" +expires = "2026-09-15" [[allow]] path = "ferrosa-graph/src/http.rs" rule = "clone-on-row-data" -reason = "t_a49d88c3: pre-existing clone-on-row-data in ferrosa-graph, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: SUBSCRIBE delta snapshot is one result copy bounded by config.max_result_rows, replaced each tick rather than accumulated." owner = "storage" expires = "2026-10-01" @@ -1124,21 +1124,21 @@ expires = "2026-10-01" [[allow]] path = "ferrosa-sparql/src/executor.rs" rule = "clone-in-scan-closure" -reason = "t_a49d88c3: pre-existing clone-in-scan-closure in ferrosa-sparql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: per-row projection copy, bounded by projection arity x the LIMIT window." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-sparql/src/executor.rs" rule = "server-side-result-cap" -reason = "t_a49d88c3: pre-existing server-side-result-cap in ferrosa-sparql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: NOT A SILENT CAP: crossing max_rows raises SparqlError::Execution — a loud error, never a truncation. It is a fail-loud resource bound that PREVENTS OOM. The genuine streaming work (pipelining the nested-loop join) is separate." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-sparql/src/property_path.rs" rule = "stream-push-accumulation" -reason = "t_a49d88c3: pre-existing stream-push-accumulation in ferrosa-sparql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: the scan streams; the pairs buffer is bounded by max_rows with a loud error. A BFS transitive closure must buffer." owner = "storage" expires = "2026-10-01" From 406e8188f237bd19be68b4da49f45d6fe4ee0e98 Mon Sep 17 00:00:00 2001 From: Ben Kearns <35475+bkearns@users.noreply.github.com> Date: Sat, 25 Jul 2026 15:58:20 -0700 Subject: [PATCH 03/16] =?UTF-8?q?docs(oom-guard):=20complete=20the=20triag?= =?UTF-8?q?e=20=E2=80=94=20every=20baseline=20entry=20now=20states=20its?= =?UTF-8?q?=20bound?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Finishes what 8e08f17f started. All 52 baseline entries now carry a real classification: 44 TRIAGED (bounded or rule misfire, each citing the specific bound) and 9 CONFIRMED REAL (expiring 2026-09-15, ahead of the rest). Zero entries remain marked "NOT individually triaged". Three structural patterns explain nearly all of the 47 newly-classified findings: - Virtual tables: every read() collects an in-memory registry into Vec while the streaming twin visit_rows exists. The class is the REGISTRY's bound, not the read's — connections, peers, in-flight queries, alert rules, MVs, tables and indexes are all server-resource bounded. - ferrosa-sql is a materializing executor whose blocking operators cannot be streamed at all (t_50d99192). - sstable/postgres/flight/view are bounded by schema arity, one flush-sized SSTable, or one Arrow RecordBatch. TWO SUSPECTED class-A findings REFUTED by reading the code rather than trusting the pattern: - billing.rs buckets looked unbounded (tenant x keyspace x minute) but are capped by MAX_BUCKETS with evict_oldest() at :79-80. - query_fingerprints.rs looked attacker-amplifiable via distinct query shapes but is capped at MAX_ENTRIES=10_000 with evict_lowest() at :74-75. Both drop to bounded. Class-A count is 19, not the 21 first reported. Two rule misfires are worth recording because they are INVERTED — the flagged constants are memory-BOUNDING, the opposite of the risk the rule describes: PARTITION_TOKEN_SUMMARY_MAX_ENTRIES downsamples so reader memory does not scale with table size, and MAX_NODE_READ is a fixed single-trie-node buffer. New fix tasks: t_f348ba0b (postgres full-table SELECT materialization, client-facing, highest), t_50d99192 (ferrosa-sql executor memory bound). Verified: enforce exits 0 today; confirmed-real entries fire as expired on 2026-09-16; 53 xtask tests green. --- specs/p0-oom-guard/oom-audit-allow.toml | 74 ++++++++++++------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/specs/p0-oom-guard/oom-audit-allow.toml b/specs/p0-oom-guard/oom-audit-allow.toml index 404911c9..6d6c3fdf 100644 --- a/specs/p0-oom-guard/oom-audit-allow.toml +++ b/specs/p0-oom-guard/oom-audit-allow.toml @@ -879,112 +879,112 @@ expires = "2027-07-01" [[allow]] path = "ferrosa-cql/src/observability.rs" rule = "collect-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing collect-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: same fixed counter-label snapshot as the sibling finding." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-cql/src/observability.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: metrics.snapshot() is a fixed set of named counter labels." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-cql/src/virtual_tables/active_queries.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: one row per in-flight query, bounded by concurrency/connection count." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-cql/src/virtual_tables/alerts.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: one row per active alert, bounded by configured alert rules." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-cql/src/virtual_tables/billing.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED - VERIFIED: buckets are capped by MAX_BUCKETS with evict_oldest() at billing.rs:79-80. Initially suspected unbounded (tenant x keyspace x minute); the eviction refutes it." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-cql/src/virtual_tables/connections.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: one row per open connection, bounded by max connections." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-cql/src/virtual_tables/consolidation_status.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: one row per active consolidation job (registry pattern; not individually opened)." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-cql/src/virtual_tables/full_scan_reasons.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: deduped per (keyspace, table, predicate_column) with count+last_seen, so schema-bounded." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-cql/src/virtual_tables/index_usage.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: one row per index = schema (registry pattern; not individually opened)." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-cql/src/virtual_tables/materialization.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: read() wraps visit_rows over queue/status snapshots; bounded by queue depth and number of MVs." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-cql/src/virtual_tables/peers_v2.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: one row per peer = cluster size." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-cql/src/virtual_tables/query_fingerprints.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED - VERIFIED: entries capped by MAX_ENTRIES=10_000 with evict_lowest() at query_fingerprints.rs:74-75. Initially suspected attacker-amplifiable via distinct query shapes; the cap refutes it." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-cql/src/virtual_tables/rrd_runtime_settings.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: fixed runtime-settings set (registry pattern; not individually opened)." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-cql/src/virtual_tables/stubs.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: stub/fixed rows (registry pattern; not individually opened)." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-cql/src/virtual_tables/table_access.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-cql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: counters keyed by (keyspace, table) = schema." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-flight/src/convert.rs" rule = "cqlvalue-row-accumulation" -reason = "t_a49d88c3: pre-existing cqlvalue-row-accumulation in ferrosa-flight, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED - VERIFIED: decode/build of ONE inbound Arrow RecordBatch; outer dim is tuple/UDT arity. query_to_batch uses page_size=1 (schema only), so no single giant batch." owner = "storage" expires = "2026-10-01" @@ -1103,21 +1103,21 @@ expires = "2026-10-01" [[allow]] path = "ferrosa-postgres/src/catalog.rs" rule = "collect-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing collect-vec-partition-or-row in ferrosa-postgres, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: pg_namespace/pg_class/pg_type are schema-sized (per keyspace, per table, fixed type universe)." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-postgres/src/storage_provider.rs" rule = "stream-push-accumulation" -reason = "t_a49d88c3: pre-existing stream-push-accumulation in ferrosa-postgres, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "CONFIRMED REAL materialization. Tracked for fix as t_f348ba0b; delete this entry when the path is bounded or streamed." owner = "storage" -expires = "2026-10-01" +expires = "2026-09-15" [[allow]] path = "ferrosa-schema/src/system/aggregate_tables.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-schema, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: per-aggregate/per-table system rows = schema (registry pattern; not individually opened)." owner = "storage" expires = "2026-10-01" @@ -1145,97 +1145,97 @@ expires = "2026-10-01" [[allow]] path = "ferrosa-sql/src/exec.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-sql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "CONFIRMED REAL materialization. Tracked for fix as t_50d99192; delete this entry when the path is bounded or streamed." owner = "storage" -expires = "2026-10-01" +expires = "2026-09-15" [[allow]] path = "ferrosa-sql/src/plan.rs" rule = "collect-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing collect-vec-partition-or-row in ferrosa-sql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "CONFIRMED REAL materialization. Tracked for fix as t_50d99192; delete this entry when the path is bounded or streamed." owner = "storage" -expires = "2026-10-01" +expires = "2026-09-15" [[allow]] path = "ferrosa-sql/src/plan.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-sql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "CONFIRMED REAL materialization. Tracked for fix as t_50d99192; delete this entry when the path is bounded or streamed." owner = "storage" -expires = "2026-10-01" +expires = "2026-09-15" [[allow]] path = "ferrosa-sql/src/provider.rs" rule = "cloned-stream-elements" -reason = "t_a49d88c3: pre-existing cloned-stream-elements in ferrosa-sql, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: InMemoryTable::scan is a lazy iter().cloned(), one row at a time; no simultaneous materialization." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-sstable/src/reader.rs" rule = "copies-row-data-arg" -reason = "t_a49d88c3: pre-existing copies-row-data-arg in ferrosa-sstable, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: FALSE POSITIVE: Arc::clone(chunk) is a refcount bump, not a data copy." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-sstable/src/reader.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-sstable, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: read_partitions_limited/_rows are bounded by their limit args; the streaming partitions_iter exists and the docs steer full-table callers to it." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-sstable/src/reader.rs" rule = "server-side-result-cap" -reason = "t_a49d88c3: pre-existing server-side-result-cap in ferrosa-sstable, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: FALSE POSITIVE - INVERTED: PARTITION_TOKEN_SUMMARY_MAX_ENTRIES DOWNSAMPLES the token summary so reader memory does NOT scale with table size. It is a memory-bounding ceiling, the opposite of a result cap." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-sstable/src/reader.rs" rule = "with-capacity-limit" -reason = "t_a49d88c3: pre-existing with-capacity-limit in ferrosa-sstable, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: with_capacity(limit) matching the same caller-supplied limit." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-sstable/src/trie/walker.rs" rule = "server-side-result-cap" -reason = "t_a49d88c3: pre-existing server-side-result-cap in ferrosa-sstable, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: FALSE POSITIVE: MAX_NODE_READ=2560 is a fixed single-trie-node read buffer size, unrelated to result counts." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-sstable/src/writer.rs" rule = "clone-on-row-data" -reason = "t_a49d88c3: pre-existing clone-on-row-data in ferrosa-sstable, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: clones serialized SSTable index-component bytes for the verify-reopen, bounded by one flush-sized SSTable (memtable threshold). Efficiency nit only: could borrow/Arc." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-storage/src/index/virtual_table.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-storage, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: one row per index = schema (registry pattern; not individually opened)." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-storage/src/virtual_tables.rs" rule = "returns-vec-partition-or-row" -reason = "t_a49d88c3: pre-existing returns-vec-partition-or-row in ferrosa-storage, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: collect_stats() is one row per table = schema." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-view/src/delta.rs" rule = "clone-in-scan-closure" -reason = "t_a49d88c3: pre-existing clone-in-scan-closure in ferrosa-view, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: projected_columns is per-row, bounded by selected column count (schema arity)." owner = "storage" expires = "2026-10-01" [[allow]] path = "ferrosa-view/src/delta.rs" rule = "cloned-stream-elements" -reason = "t_a49d88c3: pre-existing cloned-stream-elements in ferrosa-view, surfaced when the crate entered audit scope (t_2487eeb7). NOT individually triaged — bounded-vs-unbounded still unknown." +reason = "t_a49d88c3 TRIAGED: BOUNDED: view_pk_values is per-row, bounded by view PK column count (schema arity)." owner = "storage" expires = "2026-10-01" From a4541aef03c530bf1164981e9f370cf33b7d03df Mon Sep 17 00:00:00 2001 From: Ben Kearns <35475+bkearns@users.noreply.github.com> Date: Sat, 25 Jul 2026 16:43:00 -0700 Subject: [PATCH 04/16] fix(postgres): run the synchronous SQL executor off the async runtime (t_d3b2dec1) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `ferrosa_sql::execute` is synchronous and CPU-bound — scan, filter, sort, hash-aggregate, hash-join over a materialized row set — and both PG query paths called it directly inside an async handler (query.rs:705 simple, server.rs:654 extended). There was no spawn_blocking anywhere in ferrosa-postgres, so one PG-wire SELECT over a large table occupied an async worker for the whole sort/join. That is the shape PR #131 fixed on the CQL keepalive path, where sync work inline on an async worker starved keepalives and raft heartbeats into a "pool is broken" / CheckQuorum step-down. Same mechanism, heavier per call. Adds `offload::execute_offloaded`, which moves the statement, catalog, schema and params onto a blocking thread. The move is cheap: `MapCatalog`'s tables are `Arc`, so it is a refcount bump, not a copy of row data. Why spawn_blocking and not ferrosa_sched: `submit_scan` is built for chunked streaming producers — it hands back a `ScanSlot` to yield against and wires channel-close cancellation. A relational `execute` is one opaque call with no yield points, so it has nothing to do with a `ScanSlot`. spawn_blocking is not unbounded here either: the data and background runtimes set explicit max_blocking_threads ceilings (t_88223ad0) so blocking work cannot oversubscribe the cores and starve consensus. A panic in the executor is re-raised with its original payload rather than flattened into an `ExecError`. Every `ExecError` variant is a user-facing SQL condition; a panic is an engine bug, and dressing it up as a query error would hide a defect behind a message the client cannot act on. TESTS: `executor_does_not_run_on_the_async_worker` observes the executor's thread through a `Catalog::resolve` that records `thread::current().id()` — resolve runs inside `execute`, so it reports the thread the executor actually ran on. Verified the test has teeth by temporarily inlining the call: it fails with "the synchronous executor ran on the async worker". A second test asserts offloading is behavior-preserving, error case included. This is also the prerequisite for t_f348ba0b: bridging the async storage stream into TableProvider::scan's synchronous Iterator needs a bounded channel whose consumer may block on recv, which is only safe off the runtime. ferrosa-postgres 139 tests green, clippy clean, fmt clean. --- ferrosa-postgres/README.md | 20 +++- ferrosa-postgres/src/lib.rs | 1 + ferrosa-postgres/src/offload.rs | 159 ++++++++++++++++++++++++++++++++ ferrosa-postgres/src/query.rs | 14 ++- ferrosa-postgres/src/server.rs | 11 ++- 5 files changed, 200 insertions(+), 5 deletions(-) create mode 100644 ferrosa-postgres/src/offload.rs diff --git a/ferrosa-postgres/README.md b/ferrosa-postgres/README.md index f7081311..159736aa 100644 --- a/ferrosa-postgres/README.md +++ b/ferrosa-postgres/README.md @@ -86,8 +86,24 @@ inside an open transaction block. `load_catalog` materializes each referenced table (the async `StorageEngine::range_iter` stream is drained up front and decomposed via the shared `ferrosa_row_bridge::partition_to_rows_with_storage_mapping`) into an -`InMemoryTable` → `ferrosa_sql::execute` runs the sync operators → -`RowDescription` + `DataRow`s + `CommandComplete "SELECT n"`. +`InMemoryTable` → `offload::execute_offloaded` runs the sync operators **on a +blocking thread** → `RowDescription` + `DataRow`s + +`CommandComplete "SELECT n"`. + +`ferrosa_sql::execute` is synchronous and CPU-bound (scan, filter, sort, +hash-aggregate, hash-join). It must never be called inline from the async +handlers: doing so pins an async worker for the whole query and starves +connection keepalives — the failure mode PR #131 fixed on the CQL path. Both +call sites (simple query in `query.rs`, extended query in `server.rs`) go +through `offload::execute_offloaded`, and +`offload::tests::executor_does_not_run_on_the_async_worker` fails if either +regresses (forge t_d3b2dec1). + +Known limitation: `load_catalog` still materializes whole tables, so a +full-table `SELECT` is bounded by table size rather than by the query. That is +tracked as forge t_f348ba0b, and it is gated on making `ferrosa_sql`'s +`QueryResult` stream (t_50d99192) — streaming the loader alone would only move +the memory peak. **Write (`INSERT`/`UPDATE`/`DELETE`):** parse → resolve each value to a `CqlValue` by the column's CQL type (`value_to_cql`) → `build_decorated_key` + diff --git a/ferrosa-postgres/src/lib.rs b/ferrosa-postgres/src/lib.rs index ea7a56a9..64c39cbf 100644 --- a/ferrosa-postgres/src/lib.rs +++ b/ferrosa-postgres/src/lib.rs @@ -18,6 +18,7 @@ pub mod connection; pub mod extended; pub mod handshake; pub mod messages; +pub(crate) mod offload; pub mod query; pub mod scram; pub mod server; diff --git a/ferrosa-postgres/src/offload.rs b/ferrosa-postgres/src/offload.rs new file mode 100644 index 00000000..56ea09cb --- /dev/null +++ b/ferrosa-postgres/src/offload.rs @@ -0,0 +1,159 @@ +//! Module: Move the synchronous relational executor off the async runtime. +//! Correctness: Correct when every CPU-bound `ferrosa_sql` call runs on a +//! blocking thread, so no async worker is occupied for the duration of a +//! sort/join and connection keepalives stay responsive under query load. +//! Last revised: 2026-07-25 +//! Last changed: Created — `execute_offloaded` wraps `ferrosa_sql::execute` +//! (t_d3b2dec1). +//! +//! # Why +//! +//! `ferrosa_sql::execute` is fully synchronous and CPU-bound: it runs scan, +//! filter, sort, hash-aggregate and hash-join over a materialized row set. It +//! used to be called directly inside the async query handlers, so one +//! PG-wire `SELECT` over a large table occupied an async worker thread for the +//! whole sort/join. +//! +//! That is the failure mode PR #131 fixed on the CQL keepalive path: sync work +//! inline on an async worker starves keepalives and raft heartbeats. The rule +//! that came out of it — any sync storage/CPU work must be offloaded — applies +//! here for the same reason. +//! +//! # Why `spawn_blocking` and not the scheduler pool +//! +//! `ferrosa_sched`'s `submit_scan` is built for *chunked streaming producers*: +//! it hands the caller a `ScanSlot` to yield against and wires channel-close +//! cancellation. A relational `execute` is a single opaque call with no yield +//! points, so it has nothing to do with a `ScanSlot`. +//! +//! `spawn_blocking` is the right primitive, and it is not unbounded: the data +//! and background runtimes set explicit `max_blocking_threads` ceilings +//! (`ferrosa/src/runtime.rs`, t_88223ad0) precisely so blocking work cannot +//! oversubscribe the cores and starve consensus. + +use ferrosa_sql::{Catalog, ExecError, QueryResult, SelectStmt, Value}; + +/// Run the synchronous relational executor on a blocking thread. +/// +/// Takes every input by value because the closure must be `'static`: the +/// statement and catalog are moved onto the blocking thread rather than +/// borrowed across the await. `MapCatalog`'s tables are +/// `Arc`, so the move is a refcount bump, not +/// a copy of the row data. +/// +/// # Errors +/// +/// Propagates the executor's [`ExecError`] unchanged. +/// +/// # Panics +/// +/// A panic inside the executor is re-raised on the caller with its original +/// payload rather than being flattened into a SQL error. `ExecError`'s variants +/// are all user-facing SQL conditions (`NoSuchTable`, `NotGrouped`, ...); a +/// panic is an engine bug, and dressing it up as a query error would hide a +/// defect behind a message the client cannot act on. Re-raising keeps the +/// original message and backtrace, and tokio isolates the failure to this +/// connection's task. +/// +/// `spawn_blocking` work cannot be cancelled once it has started, so a panic is +/// the only way this join fails. +pub(crate) async fn execute_offloaded( + stmt: SelectStmt, + catalog: C, + default_schema: String, + params: Vec, +) -> Result +where + C: Catalog + Send + 'static, +{ + match tokio::task::spawn_blocking(move || { + ferrosa_sql::execute(&stmt, &catalog, &default_schema, ¶ms) + }) + .await + { + Ok(result) => result, + Err(join_err) => std::panic::resume_unwind(join_err.into_panic()), + } +} + +#[cfg(test)] +mod tests { + use super::*; + + use std::sync::Mutex; + + use ferrosa_sql::{SharedTable, Statement}; + + /// A catalog that records the thread its `resolve` ran on. + /// + /// `Catalog::resolve` is called from inside `ferrosa_sql::execute`, so the + /// thread it observes IS the thread the synchronous executor ran on. That + /// makes the offload directly observable instead of inferred. The recorder + /// is shared via `Arc` so it stays readable after the catalog is moved onto + /// the blocking thread. + struct ThreadRecordingCatalog(std::sync::Arc>>); + + impl Catalog for ThreadRecordingCatalog { + fn resolve(&self, _schema: &str, _table: &str) -> Option { + *self.0.lock().expect("recorder lock") = Some(std::thread::current().id()); + None // absent table: resolve still ran, which is what we observe + } + } + + fn select_stmt(sql: &str) -> SelectStmt { + match ferrosa_sql::parse_statement(sql).expect("statement parses") { + Statement::Select(s) => *s, + other => panic!("expected a SELECT, got {other:?}"), + } + } + + /// The synchronous executor must NOT run on the caller's async worker. + /// + /// This is the whole point of the module: an inline `execute` pins a runtime + /// worker for the duration of a sort/join, which is how the PR #131 + /// keepalive starvation happened. One worker thread makes an inline call + /// unmistakable — it would run on the very thread awaiting it. + #[tokio::test(flavor = "multi_thread", worker_threads = 1)] + async fn executor_does_not_run_on_the_async_worker() { + let caller = std::thread::current().id(); + let recorder = std::sync::Arc::new(Mutex::new(None)); + + let _ = execute_offloaded( + select_stmt("SELECT * FROM t"), + ThreadRecordingCatalog(recorder.clone()), + "public".to_string(), + Vec::new(), + ) + .await; + + let ran_on = recorder + .lock() + .expect("recorder lock") + .expect("the executor called Catalog::resolve"); + assert_ne!( + caller, ran_on, + "the synchronous executor ran on the async worker; it must be offloaded" + ); + } + + /// The offload must not change what the query returns. + #[tokio::test(flavor = "multi_thread", worker_threads = 1)] + async fn offloading_preserves_the_executor_result() { + let stmt = select_stmt("SELECT * FROM missing"); + let catalog = ferrosa_sql::MapCatalog::new(); + + let direct = ferrosa_sql::execute(&stmt, &catalog, "public", &[]); + let offloaded = execute_offloaded( + select_stmt("SELECT * FROM missing"), + ferrosa_sql::MapCatalog::new(), + "public".to_string(), + Vec::new(), + ) + .await; + + assert_eq!( + direct, offloaded, + "offloading must be behavior-preserving, including the error case" + ); + } +} diff --git a/ferrosa-postgres/src/query.rs b/ferrosa-postgres/src/query.rs index 0aba3f1f..a3cea182 100644 --- a/ferrosa-postgres/src/query.rs +++ b/ferrosa-postgres/src/query.rs @@ -35,7 +35,7 @@ use std::sync::Arc; use ferrosa_common::{CqlType, CqlValue}; use ferrosa_schema::{ColumnKind, Schema}; use ferrosa_sql::{ - execute, parse_statement, Column, ColumnType, DeleteStmt, ExecError, InsertStmt, MapCatalog, + parse_statement, Column, ColumnType, DeleteStmt, ExecError, InsertStmt, MapCatalog, QueryResult, Returning, Row, ScalarItem, ScalarValue, Statement, UpdateStmt, Value as SqlValue, }; use ferrosa_storage::{Mutation, StorageEngine}; @@ -702,7 +702,17 @@ pub async fn execute_query( Ok(catalog) => catalog, Err(err_msg) => return vec![err_msg], }; - match execute(&select, &catalog, default_schema, &[]) { + // Offloaded: the relational executor is synchronous and CPU-bound + // (sort/hash-join), so running it inline would pin an async worker + // for the whole query — the PR #131 starvation shape. See `offload`. + match crate::offload::execute_offloaded( + *select, + catalog, + default_schema.to_string(), + Vec::new(), + ) + .await + { Ok(result) => render_result(result, &[]), // simple query: all text Err(e) => vec![exec_error_response(&e)], } diff --git a/ferrosa-postgres/src/server.rs b/ferrosa-postgres/src/server.rs index ad02bdff..c8dafd7f 100644 --- a/ferrosa-postgres/src/server.rs +++ b/ferrosa-postgres/src/server.rs @@ -651,7 +651,16 @@ async fn execute_portal( Ok(catalog) => catalog, Err(err) => return vec![session.fail(err)], }; - let result = ferrosa_sql::execute(&select, &catalog, &ctx.default_schema, ¶ms); + // Offloaded for the same reason as the simple-query path: the + // relational executor is synchronous and CPU-bound, so running it + // inline pins an async worker for the whole sort/join. + let result = crate::offload::execute_offloaded( + *select, + catalog, + ctx.default_schema.clone(), + params.clone(), + ) + .await; let errored = result.is_err(); let msgs = query::render_execute_result(result, &result_formats); // On an execution error, set the skip flag so the rest of the From 1716df3ed760d2fda3175c9991a46a0dd66e5db6 Mon Sep 17 00:00:00 2001 From: Ben Kearns <35475+bkearns@users.noreply.github.com> Date: Sat, 25 Jul 2026 17:04:18 -0700 Subject: [PATCH 05/16] docs(postgres): correct the stale 'transactions not implemented' message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The dispatch arm for BEGIN/COMMIT/ROLLBACK said transactions were not yet implemented. They are: server::execute_simple intercepts them and drives the session's buffered write-set through Accord (commit_txn), and the extended protocol does the same — FMEA PG-1 records write atomicity as Implemented over both protocols. That arm is only reachable by a caller that enters dispatch directly with no session state, so it now says what is actually true: transaction control needs a session. A reader following the old message would have concluded ferrosa-postgres has no transaction support at all, which is wrong and would misdirect anyone scoping the Elle certification work (t_27672375). --- ferrosa-postgres/src/query.rs | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/ferrosa-postgres/src/query.rs b/ferrosa-postgres/src/query.rs index a3cea182..62774dde 100644 --- a/ferrosa-postgres/src/query.rs +++ b/ferrosa-postgres/src/query.rs @@ -722,11 +722,16 @@ pub async fn execute_query( Ok(result) => render_result(result, &[]), Err(err_msg) => vec![err_msg], }, - // Transaction control routes through Accord; execution is wired - // separately (t_0f96cb47). Fail loud rather than fake atomicity. + // Unreachable on the server path: `server::execute_simple` intercepts + // BEGIN/COMMIT/ROLLBACK and drives them against the session's buffered + // write-set (`server::commit_txn`, Accord-backed — FMEA PG-1), and the + // extended protocol does the same. This arm only catches a caller that + // reaches `dispatch` directly without session state, where there is no + // transaction to begin or commit. Failing loud beats silently reporting + // a COMMIT that buffered nothing. Statement::Begin | Statement::Commit | Statement::Rollback => vec![error_response( "0A000", - "transactions are not yet implemented (Accord-backed transactions are in progress)", + "transaction control requires a session; this path has no transaction state", )], // Session GUCs are not modeled yet. Statement::Set { .. } | Statement::Reset { .. } => vec![error_response( From 3c3eeeb6caffd6ddf715fcfa5c14bc245f99bb01 Mon Sep 17 00:00:00 2001 From: Ben Kearns <35475+bkearns@users.noreply.github.com> Date: Sat, 25 Jul 2026 17:10:21 -0700 Subject: [PATCH 06/16] docs(elle): correct the stale "not wired into CI" note in CERTIFICATION.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The note predated the CI job. `.github/workflows/elle-strict-serializable-nightly.yml` exists and runs both the fault-free and nemesis certifications nightly against a 3-node RF=3 compose cluster, opening an issue on failure. Understating coverage is its own hazard: a reader scoping the Postgres certification (t_27672375) would have concluded Elle has no regression guard and rebuilt one. Records the division of labour — CI covers regression, the Fly run remains the manual reference certification on real multi-host infrastructure. --- deploy/fly-accord-elle/CERTIFICATION.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/deploy/fly-accord-elle/CERTIFICATION.md b/deploy/fly-accord-elle/CERTIFICATION.md index f2fd970b..5b11617f 100644 --- a/deploy/fly-accord-elle/CERTIFICATION.md +++ b/deploy/fly-accord-elle/CERTIFICATION.md @@ -78,8 +78,15 @@ error-frame encoding is worth fixing (tracked separately). coordinator isolation, and 200 ms latency. It does **not** cover other fault schedules or **dual-DC** certification (`certify-dc.sh` remains gated on cross-DC replication). -- The Elle checker is **not** wired into CI; CI checks the bank conservation - invariant nightly. This certification is a **manual, reproducible** run. +- The Elle checker **is** wired into CI: + `.github/workflows/elle-strict-serializable-nightly.yml` runs both the + fault-free and nemesis certifications nightly (and on PRs touching the cert + files) against a 3-node RF=3 compose cluster + (`ferrosa-jepsen/tests/docker/elle-cluster-rf3.yml`), opening an issue on + failure. The Fly run recorded here remains the **manual, reproducible** + reference certification on real multi-host infrastructure — CI covers + regression, Fly covers certification. + (This line previously read "not wired into CI"; that predated the CI job.) ## History From 03b4e895134696d8bbc123b0d4b20a28cb093d3b Mon Sep 17 00:00:00 2001 From: Ben Kearns <35475+bkearns@users.noreply.github.com> Date: Sat, 25 Jul 2026 18:56:07 -0700 Subject: [PATCH 07/16] test(elle): add a restart fault to the nemesis certification (t_66e24bcc) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Every existing nemesis fault is a NETWORK fault — isolate, isolate-coordinator, netem latency. None of them ever discards local state, so the passing strict-serializability certification says nothing about process death. That gap matters here specifically. Nothing replays the Accord protocol log at startup, so a restarted node returns with an EMPTY ConflictIndex — no memory of in-flight transactions — and begins serving PreAccept immediately. A replica answers PreAccept with the dependencies it knows about, so an amnesiac replica reports an INCOMPLETE dep set, which is the shape that produces real-time ordering anomalies (:strong-PL-1-cycle-exists / :G-nonadjacent-item-realtime). Whether quorum covers that, or whether a restarted node must be fenced until recovery completes, is unanswered — and untested. Adds `inject_restart_replica`: SIGKILL node3, restart it, wait for it to serve CQL again. Design notes worth keeping: - SIGKILL rather than a graceful restart. A clean shutdown could flush state a real crash would not, testing the easy case and hiding the one we care about. - node3, NOT the seed. The generator runs ON node1 and writes its history to node1's /tmp; restarting node1 would kill the generator mid-run and take the history with it. A non-coordinator restart still exercises the amnesia question. Coordinator restart needs the generator off-cluster and is separate. - The fault verifies it BIT (machine state after SIGKILL) and that node3 REJOINS and serves CQL. A node that never rejoins silently degrades the run to two nodes, which is a weaker test, not a pass — so that case logs a loud warning telling the reader to distrust the verdict. Either outcome is worth having: green converts an assumption into evidence; red finds a real consensus bug in a path nothing currently covers. The likely fix if red is fencing, NOT storing write keys in the protocol log (see t_4b91be79 for why that lever was rejected). Harness change only — no certification run performed. --- deploy/fly-accord-elle/certify-nemesis.sh | 56 +++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/deploy/fly-accord-elle/certify-nemesis.sh b/deploy/fly-accord-elle/certify-nemesis.sh index 4c1db210..344d0dda 100755 --- a/deploy/fly-accord-elle/certify-nemesis.sh +++ b/deploy/fly-accord-elle/certify-nemesis.sh @@ -10,6 +10,12 @@ # writes across a partition — the safety property Elle checks. # 2. slow : add 200ms netem latency on node2+node3 so the coordinator's # commits must wait on a slow replica — validates ordering under WAN latency. +# 3. restart-replica : SIGKILL node3 and bring it back. Unlike 1 and 2 this is a +# PROCESS fault, not a network one: the node returns having lost all +# in-flight Accord state (nothing replays the protocol log at startup), so +# it resumes voting on PreAccept with an empty ConflictIndex. Tests whether +# quorum covers that amnesia or whether a restarted node must be fenced +# until recovery completes (forge t_66e24bcc). # Replicates chaos::network primitives (ip6tables/tc) over `flyctl ssh`. RF=3 so a # 2/1 partition keeps a quorum available (unlike a 3/3 dual-DC split). Teardown # ALWAYS runs (trap). Elle CHECK runs locally afterwards. @@ -193,6 +199,53 @@ inject_isolate_coordinator() { inject_slow() { log "NEMESIS inject slow (200ms on node2+node3)"; for n in 2 3; do nem "${MIDS[$n]}" "tc qdisc add dev eth0 root netem delay 200ms 50ms"; done; } heal_slow() { log "NEMESIS heal slow"; for n in 2 3; do nem "${MIDS[$n]}" "tc qdisc del dev eth0 root 2>/dev/null || true"; done; } +# --- Restart fault (forge t_66e24bcc) ------------------------------------- +# +# WHY: nothing replays the Accord protocol log at startup, so a restarted node +# comes back with an EMPTY ConflictIndex — no memory of in-flight transactions — +# and begins serving PreAccept immediately. A replica answers PreAccept with the +# dependencies it knows about, so an amnesiac replica reports an INCOMPLETE dep +# set. Whether quorum covers that, or whether a restarted node must be fenced +# until recovery completes, is the open question this fault exists to answer. +# +# Every other fault in this schedule is a NETWORK fault. Process death is a +# different failure class: the network faults never discard local state, so +# `valid? true` from the previous certification says nothing about this path. +# +# NODE CHOICE: node3, deliberately NOT the seed. The generator runs ON node1 and +# writes its history to node1's /tmp — restarting node1 would kill the generator +# mid-run and take the history with it. Restarting a non-coordinator still +# exercises the amnesia question: node3 returns with no conflict state and +# resumes voting on PreAccepts from the still-live coordinator. Covering a +# COORDINATOR restart needs the generator to run off-cluster (or stream its +# history out) and is tracked separately. +# +# SIGKILL, not a graceful restart: a clean shutdown could flush state that a real +# crash would not, which would test the easy case and hide the one we care about. +inject_restart_replica() { + local mid="${MIDS[3]}" + log "NEMESIS inject restart-replica (SIGKILL node3; returns with an empty conflict index)" + flyctl machine stop "$mid" --app "$APP" --signal SIGKILL >/dev/null 2>&1 \ + || log "WARN: stop node3 failed" + sleep 8 + # Prove the fault actually bit. A no-op fault yields a meaningless green. + local st + st="$(flyctl machine status "$mid" --app "$APP" 2>/dev/null | grep -iE '^ *State' | head -1)" + log "node3 state after SIGKILL: ${st:-}" + flyctl machine start "$mid" --app "$APP" >/dev/null 2>&1 || log "WARN: start node3 failed" + # Wait for it to accept CQL again before healing on; a node that never rejoins + # silently degrades the run to 2 nodes, which is a WEAKER test, not a pass. + local i + for i in $(seq 1 30); do + if nem "$mid" "timeout 2 sh -c '/dev/null | grep -q UP; then + log "node3 rejoined and is serving CQL after ${i}0s" + return 0 + fi + sleep 10 + done + log "WARN: node3 did NOT rejoin within 300s — the remainder of this run is a 2-node cluster; treat any verdict with suspicion" +} + nemesis_schedule() { sleep 25 inject_partition_one; sleep 20; heal_netfilter # minority isolated; majority available (safety) @@ -200,6 +253,9 @@ nemesis_schedule() { inject_isolate_coordinator; sleep 40; heal_netfilter # coordinator in minority >30s => :info (correct refusal) sleep 12 inject_slow; sleep 22; heal_slow # ordering under latency + sleep 12 + inject_restart_replica # process death: amnesiac replica rejoins and votes + sleep 20 # let it participate in real traffic before the run ends } log "starting nemesis schedule (parallel) + generator (foreground)" nemesis_schedule & From 02a99459618924a3e19954b455d0d72fc86448a2 Mon Sep 17 00:00:00 2001 From: Ben Kearns <35475+bkearns@users.noreply.github.com> Date: Sat, 25 Jul 2026 19:07:49 -0700 Subject: [PATCH 08/16] test(elle): add a coordinator-restart fault and move the generator off its target MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Extends the restart fault (20dbc80c) to cover the COORDINATOR, which is the more interesting case: the coordinator holds the in-flight Accord state for the transactions it is driving, so its amnesia on restart is what most plausibly produces an incomplete dep set. That required moving the generator. It previously ran ON the seed against `localhost:9042`, which cannot survive a coordinator restart — SIGKILLing that machine would destroy the generator process AND the history in its /tmp. The generator now runs on node2 (never restarted) and drives node1 over the internal network, so node1 can be killed while the run and its evidence continue. This is safe by construction: each worker is pinned to one target with NO retry failover, and a failed BEGIN/UPDATE classifies `:fail` while a failed COMMIT classifies `:info` — never `:fail` — so a write that did land cannot masquerade as one that did not. Verified in elle_list_append.rs before relying on it. Two guards against a falsely-green run: - A generator preflight (node2 -> node1:9042) fails BEFORE the ~40min build+run rather than producing an empty history from a bad address. - The schedule roughly doubled in length, because each restart blocks until the node serves CQL again. A fault that fires after the generator has finished hits an IDLE cluster and proves nothing, so GEN_ARGS is scaled up (8/1800/8/3) and the script now REPORTS whether the generator actually outlasted the schedule. An under-provisioned run is visible instead of silently degrading the new faults into no-ops while still printing `valid? true`. Harness only — no certification run performed yet. --- deploy/fly-accord-elle/certify-nemesis.sh | 100 ++++++++++++++++------ 1 file changed, 72 insertions(+), 28 deletions(-) diff --git a/deploy/fly-accord-elle/certify-nemesis.sh b/deploy/fly-accord-elle/certify-nemesis.sh index 344d0dda..4f21d708 100755 --- a/deploy/fly-accord-elle/certify-nemesis.sh +++ b/deploy/fly-accord-elle/certify-nemesis.sh @@ -2,20 +2,23 @@ # Single-DC 3-node Elle strict-serializability cert WITH FAULT INJECTION. # # The classic Jepsen strict-serializability-under-partition test on the proven -# 3-node RF=3 fly harness: run the Elle list-append generator on the seed (node1) -# and, WHILE it runs, fire a nemesis schedule: +# 3-node RF=3 fly harness: run the Elle list-append generator on node2 (driving +# node1 over the internal network) and, WHILE it runs, fire a nemesis schedule: # 1. partition-one : isolate node3 (drop its traffic to/from node1+node2). The # MAJORITY (node1+node2) retains quorum and keeps committing; node3 falls # behind and catches up on heal. Validates NO split-brain / lost / reordered # writes across a partition — the safety property Elle checks. # 2. slow : add 200ms netem latency on node2+node3 so the coordinator's # commits must wait on a slow replica — validates ordering under WAN latency. -# 3. restart-replica : SIGKILL node3 and bring it back. Unlike 1 and 2 this is a -# PROCESS fault, not a network one: the node returns having lost all -# in-flight Accord state (nothing replays the protocol log at startup), so -# it resumes voting on PreAccept with an empty ConflictIndex. Tests whether -# quorum covers that amnesia or whether a restarted node must be fenced -# until recovery completes (forge t_66e24bcc). +# 3. restart-replica : SIGKILL node3 and bring it back. +# 4. restart-coordinator : SIGKILL node1 — the node the generator drives. +# Unlike 1 and 2 these are PROCESS faults, not network ones: nothing +# discards local state under a partition, but a killed node returns having +# lost all in-flight Accord state (nothing replays the protocol log at +# startup) and resumes voting on PreAccept with an EMPTY ConflictIndex. +# Tests whether quorum covers that amnesia or whether a restarted node must +# be fenced until recovery completes (forge t_66e24bcc). The generator runs +# on node2 precisely so fault 4 cannot kill it or its history. # Replicates chaos::network primitives (ip6tables/tc) over `flyctl ssh`. RF=3 so a # 2/1 partition keeps a quorum available (unlike a 3/3 dual-DC split). Teardown # ALWAYS runs (trap). Elle CHECK runs locally afterwards. @@ -41,10 +44,17 @@ CPU_KIND="${CPU_KIND:-performance}" CPUS="${CPUS:-2}" MEM="${MEM:-4096}" OUT_EDN="${OUT_EDN:-${ROOT_DIR}/deploy/fly-accord-elle/elle-fly-history-nemesis.edn}" -# Generous ops so the run outlasts the ~155s nemesis schedule (the coordinator- -# isolation window blocks each in-flight op up to the 30s client timeout, slowing -# throughput sharply during that phase — so over-provision). -GEN_ARGS="${GEN_ARGS:-8 700 8 3}" +# Generous ops so the run outlasts the nemesis schedule. This matters more than +# it looks: a fault that fires after the generator has finished hits an IDLE +# cluster and proves nothing, so under-provisioning here silently turns the new +# restart faults into no-ops while still printing `valid? true`. +# +# The two restart faults each BLOCK until the node serves CQL again (up to 300s +# worst case), so the schedule is now roughly 2-3x the ~155s it was when +# GEN_ARGS was 8/700/8/3 (which produced 5600 ops). Scaled up accordingly; the +# post-run check below reports whether the generator actually outlasted the +# schedule, so a too-short run is visible rather than assumed. +GEN_ARGS="${GEN_ARGS:-8 1800 8 3}" log() { printf '\n[nem-cert] %s\n' "$*" >&2; } die() { printf '\n[nem-cert][FATAL] %s\n' "$*" >&2; exit 1; } @@ -166,6 +176,23 @@ for n in 1 2 3; do [ -n "${MIDS[$n]}" ] && [ -n "${IPS[$n]}" ] || die "missing id/ip for ferrosa-${n}" done SEED_ID="${MIDS[1]}" +# WHERE THE GENERATOR RUNS, and why it is not the node it drives. +# +# The fault-free cert runs the generator on the seed against `localhost:9042`. +# That cannot survive a COORDINATOR restart: the generator is a process on that +# machine writing its history to that machine's /tmp, so SIGKILLing it would +# destroy both the run and its evidence. +# +# So here the generator runs on node2 — which is never restarted — and drives +# node1 over the internal network. node1 is then the coordinator under test and +# can be killed while the generator keeps running and keeps its history. +# +# The generator tolerates this by construction: each worker is pinned to one +# target with NO retry failover (FallthroughRetryPolicy), and a failed BEGIN or +# UPDATE classifies `:fail` while a failed COMMIT classifies `:info` — never +# `:fail`, so a write that did land cannot masquerade as one that did not. +GEN_MID="${MIDS[2]}" +GEN_TARGET="$(dns "$SEED_ID"):9042" log "cluster up (n1=${IPS[1]} n2=${IPS[2]} n3=${IPS[3]}). settling 20s." sleep 20 @@ -222,28 +249,29 @@ heal_slow() { log "NEMESIS heal slow"; for n in 2 3; do nem "${MIDS[$n]}" "tc qd # # SIGKILL, not a graceful restart: a clean shutdown could flush state that a real # crash would not, which would test the easy case and hide the one we care about. -inject_restart_replica() { - local mid="${MIDS[3]}" - log "NEMESIS inject restart-replica (SIGKILL node3; returns with an empty conflict index)" +inject_restart() { + local n="$1" label="$2" + local mid="${MIDS[$n]}" + log "NEMESIS inject restart-${label} (SIGKILL node${n}; returns with an empty conflict index)" flyctl machine stop "$mid" --app "$APP" --signal SIGKILL >/dev/null 2>&1 \ - || log "WARN: stop node3 failed" + || log "WARN: stop node${n} failed" sleep 8 # Prove the fault actually bit. A no-op fault yields a meaningless green. local st st="$(flyctl machine status "$mid" --app "$APP" 2>/dev/null | grep -iE '^ *State' | head -1)" - log "node3 state after SIGKILL: ${st:-}" - flyctl machine start "$mid" --app "$APP" >/dev/null 2>&1 || log "WARN: start node3 failed" - # Wait for it to accept CQL again before healing on; a node that never rejoins - # silently degrades the run to 2 nodes, which is a WEAKER test, not a pass. + log "node${n} state after SIGKILL: ${st:-}" + flyctl machine start "$mid" --app "$APP" >/dev/null 2>&1 || log "WARN: start node${n} failed" + # Wait for it to accept CQL again. A node that never rejoins silently degrades + # the run to 2 nodes, which is a WEAKER test, not a pass. local i for i in $(seq 1 30); do if nem "$mid" "timeout 2 sh -c '/dev/null | grep -q UP; then - log "node3 rejoined and is serving CQL after ${i}0s" + log "node${n} rejoined and is serving CQL after $((i*10))s" return 0 fi sleep 10 done - log "WARN: node3 did NOT rejoin within 300s — the remainder of this run is a 2-node cluster; treat any verdict with suspicion" + log "WARN: node${n} did NOT rejoin within 300s — the rest of this run is a 2-node cluster; treat any verdict with suspicion" } nemesis_schedule() { @@ -254,25 +282,41 @@ nemesis_schedule() { sleep 12 inject_slow; sleep 22; heal_slow # ordering under latency sleep 12 - inject_restart_replica # process death: amnesiac replica rejoins and votes - sleep 20 # let it participate in real traffic before the run ends + inject_restart 3 replica # process death: amnesiac REPLICA rejoins and votes + sleep 25 # let it serve real traffic before the next fault + inject_restart 1 coordinator # process death of the node the generator drives + sleep 25 # let it coordinate again before the run ends } +# Preflight the generator's network path to its target. A bad address here would +# otherwise waste the whole build+run and yield an empty history. +log "generator preflight: node2 -> $GEN_TARGET" +GP="$(nem "$GEN_MID" "timeout 5 sh -c '&1 | tail -40 \ +log "run generator on node2 -> $GEN_TARGET (node1 is the coordinator under test and WILL be killed)" +flyctl ssh console --app "$APP" --machine "$GEN_MID" --command \ + "sh -lc 'elle_list_append ${GEN_TARGET} /tmp/hist.edn ${GEN_ARGS}'" 2>&1 | tail -40 \ || log "WARN: generator returned non-zero (faults may abort some ops — history still analyzed)" +GEN_END=$(date +%s) +if kill -0 "$NEM_PID" 2>/dev/null; then + log "generator finished at $((GEN_END-RUN_START))s while the nemesis schedule was STILL RUNNING — later faults will hit an idle cluster and prove nothing. Raise GEN_ARGS and re-run before trusting a green verdict." +else + log "generator outlasted the full nemesis schedule ($((GEN_END-RUN_START))s) — every fault fired against live traffic" +fi wait "$NEM_PID" 2>/dev/null || true heal_netfilter; heal_slow # 5. Retrieve history. log "fetch history -> $OUT_EDN" -flyctl ssh console --app "$APP" --machine "$SEED_ID" --command \ +flyctl ssh console --app "$APP" --machine "$GEN_MID" --command \ "sh -lc 'cat /tmp/hist.edn'" > "$OUT_EDN" 2>/dev/null lines="$(wc -l < "$OUT_EDN" | tr -d ' ')" [ "$lines" -gt 2 ] || die "history looks empty ($lines lines)" From b157feb118b779a477de4dc7ad016f3f51baa89a Mon Sep 17 00:00:00 2001 From: Ben Kearns <35475+bkearns@users.noreply.github.com> Date: Sat, 25 Jul 2026 19:24:28 -0700 Subject: [PATCH 09/16] fix(elle): connectivity checks used a bash builtin under sh, and nested quotes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The first run of the restart-fault cert aborted at the generator preflight with GEN_FAIL. That was not a real connectivity failure — both of my new checks were broken, in two independent ways: 1. `/dev/tcp/host/port` is a BASH builtin. `nem` runs `sh -lc`, and /bin/sh on debian:trixie-slim is dash, which has no /dev/tcp — so the test could only ever fail, regardless of whether the path was reachable. 2. `nem` wraps its argument in single quotes (`sh -lc '$2'`), so the nested single quotes in `sh -c '/dev/null | grep -q UP; then + if nem "$mid" "curl -sf --max-time 3 http://localhost:9090/readyz >/dev/null && echo UP || echo DOWN" 2>/dev/null | grep -q UP; then log "node${n} rejoined and is serving CQL after $((i*10))s" return 0 fi @@ -289,8 +289,19 @@ nemesis_schedule() { } # Preflight the generator's network path to its target. A bad address here would # otherwise waste the whole build+run and yield an empty history. +# +# Uses curl against node1's WEB port, not a raw CQL connect, for two reasons the +# first attempt got wrong: +# - `/dev/tcp/host/port` is a BASH builtin, but `nem` runs `sh -lc` and /bin/sh +# on debian:trixie-slim is dash — so it fails regardless of connectivity; +# - `nem` wraps its argument in single quotes, so any nested single quote ends +# the string early and mangles the command. +# curl is installed in the image and is already the readiness probe `wait_ready` +# trusts. CQL binds `[::]:9042` with the same wildcard as web's `[::]:9090`, so a +# reachable web port on the target proves the DNS + cross-node IPv6 path the +# generator needs. log "generator preflight: node2 -> $GEN_TARGET" -GP="$(nem "$GEN_MID" "timeout 5 sh -c '/dev/null && echo GEN_OK || echo GEN_FAIL")" log "preflight: $GP" [ "$GP" = "GEN_OK" ] || die "generator host cannot reach $GEN_TARGET — aborting before the run rather than producing an empty history" From b085b3812a7205a87356726ec82bd215bbf6937b Mon Sep 17 00:00:00 2001 From: Ben Kearns <35475+bkearns@users.noreply.github.com> Date: Sat, 25 Jul 2026 20:01:20 -0700 Subject: [PATCH 10/16] fix(elle): measure rejoin latency properly; size the workload to dominate faults MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit TWO CORRECTIONS TO THE PREVIOUS RUN. 1. THE REJOIN TIMING WAS NOT A MEASUREMENT. The loop reported `i*10`, counting iterations while ignoring the several seconds each `flyctl ssh` round-trip costs. So it under-reported real latency, AND its 10s granularity made two restarts appear to land on an identical figure — which I then read as "matches formation_timeout exactly". That inference was not supported by the instrument. Now measured as real elapsed wall-clock and logged as REJOIN_SECONDS alongside the configured timeout, so the correlation can be judged instead of guessed. Poll interval tightened to 5s. 2. THE WORKLOAD WAS TOO SMALL TO MEAN ANYTHING. The run produced 1026 :ok / 5 :info / 13369 :fail — 93% failure — and Elle returned `valid? true` over roughly a thousand successful appends. That is a VACUOUS pass: no anomalies found because almost nothing succeeded, not because ordering held. (The repo has hit this before: a 2026-07-20 run was green on a mostly-rejected-write history and was correctly discarded as weak.) Cause is structural, not a product bug. Each worker pins to one target with no failover (deliberate — a transaction must not split across nodes), that target is node1, and node1 is SIGKILLed for ~2 minutes. Every op in that window fails. Two restarts plus the coordinator isolation account for ~11.5k of the 13.4k failures at the observed ~41 ops/sec. Fixed by sizing the run so the successful portion dominates: GEN_ARGS 8/8000/8/3 (~64k ops, ~26min) against a schedule of roughly 475s. The outlast guard added with the restart faults did its job here — it reported that the generator finished at 349s while the schedule was still running, which is what revealed the coordinator restart had no post-rejoin traffic. Keeping that guard honest is what makes a future green verdict worth citing. --- deploy/fly-accord-elle/certify-nemesis.sh | 25 +- .../elle-fly-history-nemesis.edn | 28802 ++++++++++++++++ ...elle-fly-history-nemesis.edn.anomalies.edn | 1 + 3 files changed, 28821 insertions(+), 7 deletions(-) create mode 100644 deploy/fly-accord-elle/elle-fly-history-nemesis.edn create mode 100644 deploy/fly-accord-elle/elle-fly-history-nemesis.edn.anomalies.edn diff --git a/deploy/fly-accord-elle/certify-nemesis.sh b/deploy/fly-accord-elle/certify-nemesis.sh index ca372a57..d322c059 100755 --- a/deploy/fly-accord-elle/certify-nemesis.sh +++ b/deploy/fly-accord-elle/certify-nemesis.sh @@ -54,7 +54,7 @@ OUT_EDN="${OUT_EDN:-${ROOT_DIR}/deploy/fly-accord-elle/elle-fly-history-nemesis. # GEN_ARGS was 8/700/8/3 (which produced 5600 ops). Scaled up accordingly; the # post-run check below reports whether the generator actually outlasted the # schedule, so a too-short run is visible rather than assumed. -GEN_ARGS="${GEN_ARGS:-8 1800 8 3}" +GEN_ARGS="${GEN_ARGS:-8 8000 8 3}" log() { printf '\n[nem-cert] %s\n' "$*" >&2; } die() { printf '\n[nem-cert][FATAL] %s\n' "$*" >&2; exit 1; } @@ -260,18 +260,29 @@ inject_restart() { local st st="$(flyctl machine status "$mid" --app "$APP" 2>/dev/null | grep -iE '^ *State' | head -1)" log "node${n} state after SIGKILL: ${st:-}" + local t_start t_now + t_start=$(date +%s) flyctl machine start "$mid" --app "$APP" >/dev/null 2>&1 || log "WARN: start node${n} failed" - # Wait for it to accept CQL again. A node that never rejoins silently degrades - # the run to 2 nodes, which is a WEAKER test, not a pass. + # Wait for it to serve again. A node that never rejoins silently degrades the + # run to 2 nodes, which is a WEAKER test, not a pass. + # + # Timing is measured as REAL elapsed wall-clock, not loop-iteration count. The + # first version reported `i*10`, which silently omitted the several seconds + # each `flyctl ssh` round-trip costs — so it under-reported, and made two + # restarts look like they landed on an identical figure when the instrument + # simply lacked the resolution to distinguish them. Rejoin latency is a real + # operational property; measure it properly or do not claim it. local i - for i in $(seq 1 30); do + for i in $(seq 1 40); do if nem "$mid" "curl -sf --max-time 3 http://localhost:9090/readyz >/dev/null && echo UP || echo DOWN" 2>/dev/null | grep -q UP; then - log "node${n} rejoined and is serving CQL after $((i*10))s" + t_now=$(date +%s) + log "node${n} REJOIN_SECONDS=$((t_now-t_start)) (serving /readyz again; formation_timeout=${FERROSA_FORMATION_TIMEOUT_SECS:-120}s)" return 0 fi - sleep 10 + sleep 5 done - log "WARN: node${n} did NOT rejoin within 300s — the rest of this run is a 2-node cluster; treat any verdict with suspicion" + t_now=$(date +%s) + log "WARN: node${n} did NOT rejoin within $((t_now-t_start))s — the rest of this run is a 2-node cluster; treat any verdict with suspicion" } nemesis_schedule() { diff --git a/deploy/fly-accord-elle/elle-fly-history-nemesis.edn b/deploy/fly-accord-elle/elle-fly-history-nemesis.edn new file mode 100644 index 00000000..4078f3c0 --- /dev/null +++ b/deploy/fly-accord-elle/elle-fly-history-nemesis.edn @@ -0,0 +1,28802 @@ +[ + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 0 []]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1]]} + {:process 0 :type :ok :f :txn :value [[:append 7 1]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2]]} + {:process 0 :type :ok :f :txn :value [[:append 6 2]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 5 []]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 3]]} + {:process 0 :type :ok :f :txn :value [[:append 4 3]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 4]]} + {:process 0 :type :ok :f :txn :value [[:append 3 4]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 2 []]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 5]]} + {:process 0 :type :ok :f :txn :value [[:append 1 5]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 6]]} + {:process 0 :type :ok :f :txn :value [[:append 0 6]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1]]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 7]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8]]} + {:process 0 :type :ok :f :txn :value [[:append 6 7]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 9]]} + {:process 1 :type :ok :f :txn :value [[:append 7 8]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 10]]} + {:process 0 :type :ok :f :txn :value [[:append 5 9]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 11]]} + {:process 1 :type :ok :f :txn :value [[:append 2 10]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 12]]} + {:process 0 :type :ok :f :txn :value [[:append 3 11]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 13]]} + {:process 1 :type :ok :f :txn :value [[:append 4 12]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 14]]} + {:process 0 :type :ok :f :txn :value [[:append 2 13]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 1 [5]]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 15]]} + {:process 1 :type :ok :f :txn :value [[:append 3 14]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 7]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 16]]} + {:process 0 :type :ok :f :txn :value [[:append 0 15]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 17]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18]]} + {:process 1 :type :ok :f :txn :value [[:append 5 16]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 19]]} + {:process 0 :type :ok :f :txn :value [[:append 7 17]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 6 [2 7]]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 20]]} + {:process 2 :type :ok :f :txn :value [[:append 2 18]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 19]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 5 [9 16]]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 21]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 8 17]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 22]]} + {:process 0 :type :ok :f :txn :value [[:append 5 20]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23]]} + {:process 2 :type :ok :f :txn :value [[:append 4 21]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 24]]} + {:process 0 :type :ok :f :txn :value [[:append 4 23]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 2 22]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25]]} + {:process 0 :type :ok :f :txn :value [[:r 3 [4 11 14]]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26]]} + {:process 2 :type :ok :f :txn :value [[:append 7 24]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 6 [2 7]]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 27]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 28]]} + {:process 1 :type :ok :f :txn :value [[:append 1 25]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 2 26]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30]]} + {:process 3 :type :ok :f :txn :value [[:append 4 28]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 31]]} + {:process 2 :type :ok :f :txn :value [[:append 1 27]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 32]]} + {:process 1 :type :ok :f :txn :value [[:append 3 30]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33]]} + {:process 0 :type :ok :f :txn :value [[:append 1 29]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 3 31]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 0 [6 15 19]]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 34]]} + {:process 2 :type :ok :f :txn :value [[:append 0 32]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26]]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 35]]} + {:process 2 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31]]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 36]]} + {:process 1 :type :ok :f :txn :value [[:append 6 33]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 37]]} + {:process 0 :type :ok :f :txn :value [[:append 7 34]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 38]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 39]]} + {:process 3 :type :ok :f :txn :value [[:append 1 35]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 40]]} + {:process 2 :type :ok :f :txn :value [[:append 2 36]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 41]]} + {:process 1 :type :ok :f :txn :value [[:append 0 39]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 42]]} + {:process 4 :type :ok :f :txn :value [[:append 4 37]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 43]]} + {:process 0 :type :ok :f :txn :value [[:append 6 38]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 0 40]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 5 [9 16 20]]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 44]]} + {:process 2 :type :ok :f :txn :value [[:append 5 41]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 45]]} + {:process 1 :type :ok :f :txn :value [[:append 7 42]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 3 43]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37]]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 46]]} + {:process 1 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36]]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 47]]} + {:process 4 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36]]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 48]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 49]]} + {:process 0 :type :ok :f :txn :value [[:append 4 44]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 50]]} + {:process 3 :type :ok :f :txn :value [[:append 6 45]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 51]]} + {:process 2 :type :ok :f :txn :value [[:append 7 46]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 52]]} + {:process 5 :type :ok :f :txn :value [[:append 5 49]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 1 47]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 53]]} + {:process 4 :type :ok :f :txn :value [[:append 1 48]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 54]]} + {:process 0 :type :ok :f :txn :value [[:append 3 50]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36]]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 55]]} + {:process 0 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36]]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 56]]} + {:process 3 :type :ok :f :txn :value [[:append 5 51]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 6 52]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 57]]} + {:process 2 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48]]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 58]]} + {:process 1 :type :ok :f :txn :value [[:append 4 53]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 0 54]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 3 55]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 59]]} + {:process 0 :type :ok :f :txn :value [[:append 1 56]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 60]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 61]]} + {:process 6 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36]]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 62]]} + {:process 4 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46]]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 63]]} + {:process 3 :type :ok :f :txn :value [[:append 3 57]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 64]]} + {:process 2 :type :ok :f :txn :value [[:append 0 58]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 65]]} + {:process 0 :type :ok :f :txn :value [[:append 0 60]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 7 62]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 66]]} + {:process 5 :type :ok :f :txn :value [[:append 0 59]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 6 63]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 67]]} + {:process 1 :type :ok :f :txn :value [[:append 6 61]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 68]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 69]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62]]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 70]]} + {:process 5 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56]]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 71]]} + {:process 3 :type :ok :f :txn :value [[:append 2 64]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 72]]} + {:process 6 :type :ok :f :txn :value [[:append 0 66]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 3 65]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 5 68]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 7 69]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 73]]} + {:process 0 :type :ok :f :txn :value [[:append 6 70]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 74]]} + {:process 5 :type :ok :f :txn :value [[:append 6 71]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 75]]} + {:process 6 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68]]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 76]]} + {:process 4 :type :ok :f :txn :value [[:append 5 67]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64]]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 77]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 78]]} + {:process 4 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53]]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 79]]} + {:process 3 :type :ok :f :txn :value [[:append 0 72]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 80]]} + {:process 2 :type :ok :f :txn :value [[:append 5 77]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 81]]} + {:process 0 :type :ok :f :txn :value [[:append 5 74]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 0 73]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 6 76]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 82]]} + {:process 5 :type :ok :f :txn :value [[:append 7 75]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 83]]} + {:process 7 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56]]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 84]]} + {:process 1 :type :ok :f :txn :value [[:append 7 78]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 85]]} + {:process 5 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53]]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 86]]} + {:process 4 :type :ok :f :txn :value [[:append 3 79]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 87]]} + {:process 3 :type :ok :f :txn :value [[:append 7 80]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 4 81]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 88]]} + {:process 6 :type :ok :f :txn :value [[:append 3 82]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80]]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 89]]} + {:process 5 :type :ok :f :txn :value [[:append 5 86]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 90]]} + {:process 7 :type :ok :f :txn :value [[:append 2 84]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 91]]} + {:process 6 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81]]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 92]]} + {:process 1 :type :ok :f :txn :value [[:append 2 85]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 3 83]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 93]]} + {:process 4 :type :ok :f :txn :value [[:append 2 87]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 94]]} + {:process 4 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56]]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 95]]} + {:process 3 :type :ok :f :txn :value [[:append 5 88]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 96]]} + {:process 7 :type :ok :f :txn :value [[:append 3 91]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 6 89]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 97]]} + {:process 5 :type :ok :f :txn :value [[:append 2 90]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 1 92]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 98]]} + {:process 0 :type :ok :f :txn :value [[:append 2 93]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81]]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 99]]} + {:process 5 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91]]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 100]]} + {:process 1 :type :ok :f :txn :value [[:append 4 94]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 101]]} + {:process 0 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92]]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 102]]} + {:process 4 :type :ok :f :txn :value [[:append 0 95]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 103]]} + {:process 3 :type :ok :f :txn :value [[:append 4 96]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 1 97]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 2 98]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 104]]} + {:process 2 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95]]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 105]]} + {:process 1 :type :ok :f :txn :value [[:append 3 101]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 5 99]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 106]]} + {:process 5 :type :ok :f :txn :value [[:append 0 100]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 107]]} + {:process 6 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80]]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 108]]} + {:process 0 :type :ok :f :txn :value [[:append 0 102]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 109]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 110]]} + {:process 4 :type :ok :f :txn :value [[:append 7 103]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 2 104]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 111]]} + {:process 4 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89]]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 112]]} + {:process 2 :type :ok :f :txn :value [[:append 3 105]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 113]]} + {:process 5 :type :ok :f :txn :value [[:append 1 107]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 0 108]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 114]]} + {:process 7 :type :ok :f :txn :value [[:append 6 106]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 5 110]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 115]]} + {:process 0 :type :ok :f :txn :value [[:append 7 109]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106]]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 116]]} + {:process 7 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109]]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 117]]} + {:process 0 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106]]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 118]]} + {:process 3 :type :ok :f :txn :value [[:append 1 111]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 5 112]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 119]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108]]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 120]]} + {:process 2 :type :ok :f :txn :value [[:append 2 113]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 5 114]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 115]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 0 117]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 121]]} + {:process 2 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114]]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 122]]} + {:process 5 :type :ok :f :txn :value [[:append 7 116]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 123]]} + {:process 6 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106]]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 124]]} + {:process 0 :type :ok :f :txn :value [[:append 5 118]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 125]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 126]]} + {:process 4 :type :ok :f :txn :value [[:append 4 119]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 7 120]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 127]]} + {:process 4 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105]]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 128]]} + {:process 0 :type :ok :f :txn :value [[:append 4 125]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 4 123]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 4 122]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 129]]} + {:process 6 :type :ok :f :txn :value [[:append 3 124]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 130]]} + {:process 7 :type :ok :f :txn :value [[:append 1 121]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124]]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 131]]} + {:process 1 :type :ok :f :txn :value [[:append 2 126]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 132]]} + {:process 5 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118]]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 133]]} + {:process 7 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126]]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 134]]} + {:process 3 :type :ok :f :txn :value [[:append 6 127]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 2 128]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 135]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 136]]} + {:process 6 :type :ok :f :txn :value [[:append 4 130]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 7 129]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 2 131]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 137]]} + {:process 7 :type :ok :f :txn :value [[:append 3 134]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 138]]} + {:process 6 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121]]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 139]]} + {:process 1 :type :ok :f :txn :value [[:append 1 132]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127]]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 140]]} + {:process 5 :type :ok :f :txn :value [[:append 2 133]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 141]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 142]]} + {:process 3 :type :ok :f :txn :value [[:append 4 136]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 143]]} + {:process 4 :type :ok :f :txn :value [[:append 1 135]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 2 139]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 144]]} + {:process 4 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117]]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 145]]} + {:process 0 :type :ok :f :txn :value [[:append 1 137]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 4 138]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 3 141]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 1 140]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 146]]} + {:process 1 :type :ok :f :txn :value [[:append 3 142]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 147]]} + {:process 0 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117]]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 148]]} + {:process 7 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118]]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 149]]} + {:process 3 :type :ok :f :txn :value [[:append 3 143]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117]]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 150]]} + {:process 3 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139]]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 151]]} + {:process 6 :type :ok :f :txn :value [[:append 7 144]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 7 145]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 152]]} + {:process 6 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117]]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 153]]} + {:process 7 :type :ok :f :txn :value [[:append 6 149]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 154]]} + {:process 1 :type :ok :f :txn :value [[:append 6 147]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 7 148]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 155]]} + {:process 2 :type :ok :f :txn :value [[:append 0 146]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 1 151]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 156]]} + {:process 5 :type :ok :f :txn :value [[:append 1 150]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 157]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 158]]} + {:process 2 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143]]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 159]]} + {:process 4 :type :ok :f :txn :value [[:append 6 152]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 5 153]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 160]]} + {:process 7 :type :ok :f :txn :value [[:append 7 154]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153]]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 161]]} + {:process 3 :type :ok :f :txn :value [[:append 0 156]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 6 155]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156]]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 162]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 163]]} + {:process 0 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153]]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 164]]} + {:process 1 :type :ok :f :txn :value [[:append 0 158]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 165]]} + {:process 5 :type :ok :f :txn :value [[:append 6 157]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 2 159]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 166]]} + {:process 6 :type :ok :f :txn :value [[:append 6 160]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154]]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 167]]} + {:process 4 :type :ok :f :txn :value [[:append 4 161]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 168]]} + {:process 6 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143]]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 169]]} + {:process 3 :type :ok :f :txn :value [[:append 6 163]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 170]]} + {:process 0 :type :ok :f :txn :value [[:append 4 164]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 171]]} + {:process 7 :type :ok :f :txn :value [[:append 1 162]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 172]]} + {:process 1 :type :ok :f :txn :value [[:append 7 165]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 5 166]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 4 167]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 173]]} + {:process 4 :type :ok :f :txn :value [[:append 3 168]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159]]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 174]]} + {:process 2 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167]]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 175]]} + {:process 4 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159]]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 176]]} + {:process 6 :type :ok :f :txn :value [[:append 4 169]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 177]]} + {:process 3 :type :ok :f :txn :value [[:append 5 170]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 3 171]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 2 172]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 178]]} + {:process 0 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172]]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 179]]} + {:process 5 :type :ok :f :txn :value [[:append 5 173]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171]]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 180]]} + {:process 1 :type :ok :f :txn :value [[:append 1 174]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 181]]} + {:process 5 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172]]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 182]]} + {:process 2 :type :ok :f :txn :value [[:append 7 175]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 183]]} + {:process 6 :type :ok :f :txn :value [[:append 1 177]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 1 176]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 184]]} + {:process 6 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172]]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 185]]} + {:process 7 :type :ok :f :txn :value [[:append 4 180]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 186]]} + {:process 1 :type :ok :f :txn :value [[:append 4 181]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 3 178]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 187]]} + {:process 0 :type :ok :f :txn :value [[:append 1 179]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 188]]} + {:process 2 :type :ok :f :txn :value [[:append 6 183]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 3 182]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 189]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 190]]} + {:process 4 :type :ok :f :txn :value [[:append 0 184]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179]]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 191]]} + {:process 6 :type :ok :f :txn :value [[:append 7 185]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 192]]} + {:process 7 :type :ok :f :txn :value [[:append 5 186]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185]]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 193]]} + {:process 7 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183]]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 194]]} + {:process 3 :type :ok :f :txn :value [[:append 2 187]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 0 188]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 6 190]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 195]]} + {:process 5 :type :ok :f :txn :value [[:append 0 189]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 196]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185]]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 197]]} + {:process 6 :type :ok :f :txn :value [[:append 0 192]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179]]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 198]]} + {:process 2 :type :ok :f :txn :value [[:append 0 191]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 199]]} + {:process 6 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186]]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 200]]} + {:process 4 :type :ok :f :txn :value [[:append 6 193]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 201]]} + {:process 7 :type :ok :f :txn :value [[:append 7 194]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 202]]} + {:process 1 :type :ok :f :txn :value [[:append 5 195]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 0 196]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 203]]} + {:process 0 :type :ok :f :txn :value [[:append 6 197]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 204]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 205]]} + {:process 6 :type :ok :f :txn :value [[:append 6 200]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 206]]} + {:process 5 :type :ok :f :txn :value [[:append 6 198]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 207]]} + {:process 2 :type :ok :f :txn :value [[:append 3 199]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 0 202]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 5 201]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187]]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 208]]} + {:process 7 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179]]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 209]]} + {:process 4 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181]]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 210]]} + {:process 0 :type :ok :f :txn :value [[:append 5 204]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 7 203]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 3 206]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 7 205]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 211]]} + {:process 5 :type :ok :f :txn :value [[:append 7 207]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 212]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 213]]} + {:process 6 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181]]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 214]]} + {:process 5 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181]]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 215]]} + {:process 2 :type :ok :f :txn :value [[:append 5 208]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 216]]} + {:process 7 :type :ok :f :txn :value [[:append 2 209]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 217]]} + {:process 4 :type :ok :f :txn :value [[:append 3 210]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 218]]} + {:process 3 :type :ok :f :txn :value [[:append 5 213]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 219]]} + {:process 1 :type :ok :f :txn :value [[:append 2 211]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 3 212]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 220]]} + {:process 6 :type :ok :f :txn :value [[:append 1 214]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 221]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 222]]} + {:process 5 :type :ok :f :txn :value [[:append 5 215]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 223]]} + {:process 2 :type :ok :f :txn :value [[:append 4 216]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 4 219]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 3 217]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 2 218]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207]]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 224]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 225]]} + {:process 7 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219]]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 226]]} + {:process 4 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214]]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 227]]} + {:process 0 :type :ok :f :txn :value [[:append 2 220]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 4 222]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 228]]} + {:process 6 :type :ok :f :txn :value [[:append 2 221]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 2 223]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214]]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 229]]} + {:process 6 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207]]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 230]]} + {:process 5 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217]]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 231]]} + {:process 2 :type :ok :f :txn :value [[:append 6 224]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 232]]} + {:process 7 :type :ok :f :txn :value [[:append 5 226]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 233]]} + {:process 3 :type :ok :f :txn :value [[:append 2 225]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 234]]} + {:process 4 :type :ok :f :txn :value [[:append 0 227]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 235]]} + {:process 1 :type :ok :f :txn :value [[:append 3 228]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 0 229]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 236]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 237]]} + {:process 5 :type :ok :f :txn :value [[:append 0 231]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 238]]} + {:process 6 :type :ok :f :txn :value [[:append 0 230]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 239]]} + {:process 4 :type :ok :f :txn :value [[:append 7 235]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 1 232]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 1 234]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 6 233]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233]]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 240]]} + {:process 2 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230]]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 241]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230]]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 242]]} + {:process 5 :type :ok :f :txn :value [[:append 1 238]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235]]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 243]]} + {:process 1 :type :ok :f :txn :value [[:append 5 237]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 244]]} + {:process 0 :type :ok :f :txn :value [[:append 7 236]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233]]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 245]]} + {:process 6 :type :ok :f :txn :value [[:append 5 239]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233]]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 246]]} + {:process 6 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233]]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 247]]} + {:process 3 :type :ok :f :txn :value [[:append 7 242]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 248]]} + {:process 4 :type :ok :f :txn :value [[:append 5 240]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 249]]} + {:process 2 :type :ok :f :txn :value [[:append 3 241]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 250]]} + {:process 7 :type :ok :f :txn :value [[:append 0 243]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 251]]} + {:process 5 :type :ok :f :txn :value [[:append 7 245]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 252]]} + {:process 1 :type :ok :f :txn :value [[:append 0 244]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 5 246]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 253]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 254]]} + {:process 6 :type :ok :f :txn :value [[:append 3 247]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 255]]} + {:process 5 :type :ok :f :txn :value [[:append 4 252]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 4 249]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 6 248]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 2 250]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 1 251]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246]]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 256]]} + {:process 4 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247]]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 257]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 258]]} + {:process 0 :type :ok :f :txn :value [[:append 4 253]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246]]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 259]]} + {:process 1 :type :ok :f :txn :value [[:append 2 254]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 260]]} + {:process 7 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254]]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 261]]} + {:process 0 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247]]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 262]]} + {:process 6 :type :ok :f :txn :value [[:append 4 255]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251]]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 263]]} + {:process 2 :type :ok :f :txn :value [[:append 4 259]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 264]]} + {:process 5 :type :ok :f :txn :value [[:append 2 256]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 265]]} + {:process 4 :type :ok :f :txn :value [[:append 2 257]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 266]]} + {:process 3 :type :ok :f :txn :value [[:append 4 258]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 267]]} + {:process 1 :type :ok :f :txn :value [[:append 1 260]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 2 262]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 268]]} + {:process 7 :type :ok :f :txn :value [[:append 3 261]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 269]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 270]]} + {:process 3 :type :ok :f :txn :value [[:append 3 267]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 3 265]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 7 264]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 1 266]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 2 263]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 271]]} + {:process 3 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263]]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 272]]} + {:process 5 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244]]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 273]]} + {:process 0 :type :ok :f :txn :value [[:append 1 268]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248]]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 274]]} + {:process 7 :type :ok :f :txn :value [[:append 4 269]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244]]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 275]]} + {:process 1 :type :ok :f :txn :value [[:append 3 270]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 276]]} + {:process 0 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244]]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 277]]} + {:process 7 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246]]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 278]]} + {:process 2 :type :ok :f :txn :value [[:append 1 274]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 279]]} + {:process 3 :type :ok :f :txn :value [[:append 1 272]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 280]]} + {:process 5 :type :ok :f :txn :value [[:append 1 273]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 281]]} + {:process 6 :type :ok :f :txn :value [[:append 7 271]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 7 277]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 282]]} + {:process 1 :type :ok :f :txn :value [[:append 6 276]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244]]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 283]]} + {:process 7 :type :ok :f :txn :value [[:append 6 278]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 284]]} + {:process 4 :type :ok :f :txn :value [[:append 7 275]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 285]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 286]]} + {:process 2 :type :ok :f :txn :value [[:append 0 279]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 6 281]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 0 280]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270]]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 287]]} + {:process 5 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275]]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 288]]} + {:process 0 :type :ok :f :txn :value [[:append 6 282]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 289]]} + {:process 7 :type :ok :f :txn :value [[:append 7 284]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 5 283]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 290]]} + {:process 0 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283]]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 291]]} + {:process 4 :type :ok :f :txn :value [[:append 6 285]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280]]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 292]]} + {:process 1 :type :ok :f :txn :value [[:append 0 286]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 293]]} + {:process 4 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283]]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 294]]} + {:process 5 :type :ok :f :txn :value [[:append 4 288]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 295]]} + {:process 2 :type :ok :f :txn :value [[:append 2 287]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 296]]} + {:process 3 :type :ok :f :txn :value [[:append 6 289]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 297]]} + {:process 0 :type :ok :f :txn :value [[:append 4 291]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 298]]} + {:process 6 :type :ok :f :txn :value [[:append 6 290]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 1 292]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 299]]} + {:process 6 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270]]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 300]]} + {:process 1 :type :ok :f :txn :value [[:append 7 293]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 5 295]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 4 294]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 301]]} + {:process 2 :type :ok :f :txn :value [[:append 5 296]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287]]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 302]]} + {:process 3 :type :ok :f :txn :value [[:append 5 297]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 3 298]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287]]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 303]]} + {:process 2 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294]]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 304]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 305]]} + {:process 0 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287]]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 306]]} + {:process 7 :type :ok :f :txn :value [[:append 2 299]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 4 300]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 307]]} + {:process 7 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298]]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 308]]} + {:process 1 :type :ok :f :txn :value [[:append 1 302]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 309]]} + {:process 4 :type :ok :f :txn :value [[:append 3 301]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 1 306]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 310]]} + {:process 5 :type :ok :f :txn :value [[:append 3 303]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 311]]} + {:process 4 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299]]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 312]]} + {:process 2 :type :ok :f :txn :value [[:append 7 304]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 313]]} + {:process 3 :type :ok :f :txn :value [[:append 3 305]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 314]]} + {:process 6 :type :ok :f :txn :value [[:append 1 307]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 4 308]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 315]]} + {:process 6 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299]]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 316]]} + {:process 1 :type :ok :f :txn :value [[:append 4 309]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 0 310]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 1 312]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 317]]} + {:process 5 :type :ok :f :txn :value [[:append 0 311]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 318]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304]]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 319]]} + {:process 2 :type :ok :f :txn :value [[:append 6 313]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 2 314]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312]]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 320]]} + {:process 7 :type :ok :f :txn :value [[:append 5 315]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 7 316]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 321]]} + {:process 2 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312]]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 322]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 323]]} + {:process 7 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313]]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 324]]} + {:process 1 :type :ok :f :txn :value [[:append 6 318]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 325]]} + {:process 4 :type :ok :f :txn :value [[:append 0 317]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 6 319]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 326]]} + {:process 5 :type :ok :f :txn :value [[:append 6 320]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 327]]} + {:process 4 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316]]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 328]]} + {:process 6 :type :ok :f :txn :value [[:append 0 321]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 0 323]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 329]]} + {:process 2 :type :ok :f :txn :value [[:append 0 322]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 330]]} + {:process 6 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315]]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 331]]} + {:process 1 :type :ok :f :txn :value [[:append 5 325]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 7 324]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 332]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 333]]} + {:process 5 :type :ok :f :txn :value [[:append 7 327]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 6 328]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 334]]} + {:process 0 :type :ok :f :txn :value [[:append 5 326]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 7 329]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309]]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 335]]} + {:process 2 :type :ok :f :txn :value [[:append 3 330]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 336]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 337]]} + {:process 6 :type :ok :f :txn :value [[:append 6 331]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 338]]} + {:process 2 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299 314]]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 339]]} + {:process 7 :type :ok :f :txn :value [[:append 0 332]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 7 333]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 340]]} + {:process 4 :type :ok :f :txn :value [[:append 5 334]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312]]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 341]]} + {:process 4 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309]]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 342]]} + {:process 0 :type :ok :f :txn :value [[:append 3 336]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 343]]} + {:process 5 :type :ok :f :txn :value [[:append 5 335]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 344]]} + {:process 6 :type :ok :f :txn :value [[:append 3 338]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 5 337]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 345]]} + {:process 2 :type :ok :f :txn :value [[:append 5 339]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 346]]} + {:process 6 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309]]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 347]]} + {:process 1 :type :ok :f :txn :value [[:append 2 340]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 2 341]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 348]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 349]]} + {:process 0 :type :ok :f :txn :value [[:append 2 343]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 3 342]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 350]]} + {:process 3 :type :ok :f :txn :value [[:append 4 345]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 2 344]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312]]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 351]]} + {:process 2 :type :ok :f :txn :value [[:append 4 346]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 352]]} + {:process 5 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342]]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 353]]} + {:process 6 :type :ok :f :txn :value [[:append 1 347]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 354]]} + {:process 7 :type :ok :f :txn :value [[:append 3 348]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333]]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 355]]} + {:process 1 :type :ok :f :txn :value [[:append 4 349]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 356]]} + {:process 7 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349]]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 357]]} + {:process 4 :type :ok :f :txn :value [[:append 2 350]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 0 351]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 358]]} + {:process 4 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347]]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 359]]} + {:process 3 :type :ok :f :txn :value [[:append 2 352]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 360]]} + {:process 5 :type :ok :f :txn :value [[:append 0 353]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 361]]} + {:process 6 :type :ok :f :txn :value [[:append 2 354]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 6 355]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 362]]} + {:process 1 :type :ok :f :txn :value [[:append 3 356]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 5 357]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 363]]} + {:process 6 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333]]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 364]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 365]]} + {:process 0 :type :ok :f :txn :value [[:append 7 358]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 0 359]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 366]]} + {:process 5 :type :ok :f :txn :value [[:append 1 361]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 1 360]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355]]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 367]]} + {:process 2 :type :ok :f :txn :value [[:append 1 362]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355]]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 368]]} + {:process 7 :type :ok :f :txn :value [[:append 6 363]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359]]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 369]]} + {:process 2 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359]]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 370]]} + {:process 1 :type :ok :f :txn :value [[:append 5 365]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 371]]} + {:process 6 :type :ok :f :txn :value [[:append 0 364]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 372]]} + {:process 7 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358]]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 373]]} + {:process 4 :type :ok :f :txn :value [[:append 7 366]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 7 368]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 374]]} + {:process 0 :type :ok :f :txn :value [[:append 5 367]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 375]]} + {:process 4 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363]]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 376]]} + {:process 1 :type :ok :f :txn :value [[:append 0 371]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 7 369]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 377]]} + {:process 6 :type :ok :f :txn :value [[:append 5 372]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 3 370]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 378]]} + {:process 7 :type :ok :f :txn :value [[:append 0 373]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 379]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 380]]} + {:process 6 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363]]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 381]]} + {:process 5 :type :ok :f :txn :value [[:append 4 374]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372]]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 382]]} + {:process 2 :type :ok :f :txn :value [[:append 2 378]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 6 377]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 4 375]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 5 376]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 383]]} + {:process 2 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376]]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 384]]} + {:process 1 :type :ok :f :txn :value [[:append 2 380]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 385]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 386]]} + {:process 6 :type :ok :f :txn :value [[:append 3 381]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 387]]} + {:process 7 :type :ok :f :txn :value [[:append 1 379]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381]]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 388]]} + {:process 7 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299 314 340 341 343 344 350 352 354 378 380]]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 389]]} + {:process 5 :type :ok :f :txn :value [[:append 2 382]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 390]]} + {:process 1 :type :ok :f :txn :value [[:append 1 385]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 4 387]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 4 386]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 391]]} + {:process 2 :type :ok :f :txn :value [[:append 4 384]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 392]]} + {:process 4 :type :ok :f :txn :value [[:append 4 383]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 3 389]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 393]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 394]]} + {:process 0 :type :ok :f :txn :value [[:append 2 388]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 395]]} + {:process 6 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385]]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 396]]} + {:process 4 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389]]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 397]]} + {:process 5 :type :ok :f :txn :value [[:append 3 390]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373]]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 398]]} + {:process 2 :type :ok :f :txn :value [[:append 7 392]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 3 391]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 2 396]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 399]]} + {:process 4 :type :ok :f :txn :value [[:append 2 397]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 400]]} + {:process 7 :type :ok :f :txn :value [[:append 4 393]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 3 394]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 401]]} + {:process 0 :type :ok :f :txn :value [[:append 1 395]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377]]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 402]]} + {:process 3 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299 314 340 341 343 344 350 352 354 378 380 382 388 396 397]]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 403]]} + {:process 7 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376]]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 404]]} + {:process 0 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373]]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 405]]} + {:process 5 :type :ok :f :txn :value [[:append 1 398]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 406]]} + {:process 2 :type :ok :f :txn :value [[:append 1 402]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 407]]} + {:process 1 :type :ok :f :txn :value [[:append 6 401]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 1 400]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 1 403]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 408]]} + {:process 6 :type :ok :f :txn :value [[:append 7 399]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 409]]} + {:process 0 :type :ok :f :txn :value [[:append 7 405]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 410]]} + {:process 7 :type :ok :f :txn :value [[:append 6 404]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 411]]} + {:process 4 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373]]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 412]]} + {:process 6 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373]]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 413]]} + {:process 5 :type :ok :f :txn :value [[:append 6 406]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 0 407]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405]]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 414]]} + {:process 3 :type :ok :f :txn :value [[:append 0 408]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394]]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 415]]} + {:process 7 :type :ok :f :txn :value [[:append 7 411]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 5 413]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 416]]} + {:process 4 :type :ok :f :txn :value [[:append 7 412]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 417]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405 411 412]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 418]]} + {:process 0 :type :ok :f :txn :value [[:append 6 410]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 409]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 419]]} + {:process 7 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373 407 408 409]]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 420]]} + {:process 0 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413]]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 421]]} + {:process 5 :type :ok :f :txn :value [[:append 4 414]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 422]]} + {:process 1 :type :ok :f :txn :value [[:append 7 419]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 6 417]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 6 416]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 6 418]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 423]]} + {:process 2 :type :ok :f :txn :value [[:append 2 415]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 424]]} + {:process 1 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299 314 340 341 343 344 350 352 354 378 380 382 388 396 397 415]]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 425]]} + {:process 4 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413]]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 426]]} + {:process 6 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394]]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 427]]} + {:process 0 :type :ok :f :txn :value [[:append 4 421]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 428]]} + {:process 5 :type :ok :f :txn :value [[:append 5 422]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 1 420]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 429]]} + {:process 5 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299 314 340 341 343 344 350 352 354 378 380 382 388 396 397 415]]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 430]]} + {:process 2 :type :ok :f :txn :value [[:append 5 424]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 5 423]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421]]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 431]]} + {:process 6 :type :ok :f :txn :value [[:append 4 427]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 432]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 433]]} + {:process 7 :type :ok :f :txn :value [[:append 2 429]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 1 425]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 434]]} + {:process 0 :type :ok :f :txn :value [[:append 3 428]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 4 426]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 435]]} + {:process 7 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428]]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 436]]} + {:process 5 :type :ok :f :txn :value [[:append 3 430]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 437]]} + {:process 0 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299 314 340 341 343 344 350 352 354 378 380 382 388 396 397 415 429]]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 438]]} + {:process 6 :type :ok :f :txn :value [[:append 1 432]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 7 431]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 439]]} + {:process 1 :type :ok :f :txn :value [[:append 4 434]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 3 433]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 440]]} + {:process 5 :type :ok :f :txn :value [[:append 0 437]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299 314 340 341 343 344 350 352 354 378 380 382 388 396 397 415 429]]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 441]]} + {:process 7 :type :ok :f :txn :value [[:append 4 436]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 442]]} + {:process 4 :type :ok :f :txn :value [[:append 3 435]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 443]]} + {:process 0 :type :ok :f :txn :value [[:append 1 438]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 444]]} + {:process 5 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438]]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 445]]} + {:process 4 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299 314 340 341 343 344 350 352 354 378 380 382 388 396 397 415 429]]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 446]]} + {:process 2 :type :ok :f :txn :value [[:append 6 439]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 2 440]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 7 441]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 447]]} + {:process 0 :type :ok :f :txn :value [[:append 0 444]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 5 442]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438]]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 448]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 449]]} + {:process 5 :type :ok :f :txn :value [[:append 6 445]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 450]]} + {:process 1 :type :ok :f :txn :value [[:append 6 443]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 451]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405 411 412 419 431 441]]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 452]]} + {:process 7 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443]]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 453]]} + {:process 4 :type :ok :f :txn :value [[:append 1 446]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 454]]} + {:process 2 :type :ok :f :txn :value [[:append 0 448]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 455]]} + {:process 6 :type :ok :f :txn :value [[:append 0 447]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442]]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 456]]} + {:process 3 :type :ok :f :txn :value [[:append 0 449]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 457]]} + {:process 1 :type :ok :f :txn :value [[:append 5 451]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 7 453]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 458]]} + {:process 0 :type :ok :f :txn :value [[:append 6 452]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 459]]} + {:process 5 :type :ok :f :txn :value [[:append 7 450]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 0 454]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 3 455]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373 407 408 409 437 444 448 447 449 454]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 460]]} + {:process 5 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436]]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 461]]} + {:process 4 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405 411 412 419 431 441 453 450]]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 462]]} + {:process 2 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299 314 340 341 343 344 350 352 354 378 380 382 388 396 397 415 429 440]]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 463]]} + {:process 6 :type :ok :f :txn :value [[:append 6 456]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 464]]} + {:process 0 :type :ok :f :txn :value [[:append 5 459]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 0 458]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 7 457]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 465]]} + {:process 4 :type :ok :f :txn :value [[:append 6 462]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 466]]} + {:process 7 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446]]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 467]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 468]]} + {:process 2 :type :ok :f :txn :value [[:append 5 463]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 469]]} + {:process 1 :type :ok :f :txn :value [[:append 7 460]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 470]]} + {:process 5 :type :ok :f :txn :value [[:append 5 461]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 471]]} + {:process 6 :type :ok :f :txn :value [[:append 3 464]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436]]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 472]]} + {:process 0 :type :ok :f :txn :value [[:append 3 465]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 473]]} + {:process 2 :type :ok :f :txn :value [[:append 4 469]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 5 466]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 472]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 474]]} + {:process 0 :type :fail :f :txn :value [[:append 2 473]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 475]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 476]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 477]]} + {:process 0 :type :fail :f :txn :value [[:append 0 477]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 478]]} + {:process 0 :type :fail :f :txn :value [[:append 7 478]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 479]]} + {:process 0 :type :fail :f :txn :value [[:append 5 479]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 480]]} + {:process 0 :type :fail :f :txn :value [[:append 4 480]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 481]]} + {:process 0 :type :fail :f :txn :value [[:append 2 481]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 482]]} + {:process 0 :type :fail :f :txn :value [[:append 1 482]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 483]]} + {:process 0 :type :fail :f :txn :value [[:append 7 483]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 484]]} + {:process 0 :type :fail :f :txn :value [[:append 6 484]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 485]]} + {:process 0 :type :fail :f :txn :value [[:append 4 485]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 486]]} + {:process 0 :type :fail :f :txn :value [[:append 3 486]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 487]]} + {:process 0 :type :fail :f :txn :value [[:append 1 487]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 488]]} + {:process 0 :type :fail :f :txn :value [[:append 0 488]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 489]]} + {:process 0 :type :fail :f :txn :value [[:append 6 489]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 490]]} + {:process 0 :type :fail :f :txn :value [[:append 5 490]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 491]]} + {:process 0 :type :fail :f :txn :value [[:append 3 491]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 492]]} + {:process 0 :type :fail :f :txn :value [[:append 2 492]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 493]]} + {:process 6 :type :fail :f :txn :value [[:append 2 474]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 494]]} + {:process 6 :type :fail :f :txn :value [[:append 0 494]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 495]]} + {:process 6 :type :fail :f :txn :value [[:append 5 495]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 496]]} + {:process 6 :type :fail :f :txn :value [[:append 3 496]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 497]]} + {:process 6 :type :fail :f :txn :value [[:append 4 497]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 498]]} + {:process 6 :type :fail :f :txn :value [[:append 2 498]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 499]]} + {:process 6 :type :fail :f :txn :value [[:append 7 499]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 500]]} + {:process 6 :type :fail :f :txn :value [[:append 5 500]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 501]]} + {:process 6 :type :fail :f :txn :value [[:append 6 501]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 502]]} + {:process 6 :type :fail :f :txn :value [[:append 4 502]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 503]]} + {:process 6 :type :fail :f :txn :value [[:append 1 503]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 504]]} + {:process 6 :type :fail :f :txn :value [[:append 7 504]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 505]]} + {:process 6 :type :fail :f :txn :value [[:append 0 505]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 506]]} + {:process 6 :type :fail :f :txn :value [[:append 6 506]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 507]]} + {:process 6 :type :fail :f :txn :value [[:append 3 507]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 508]]} + {:process 6 :type :fail :f :txn :value [[:append 1 508]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 509]]} + {:process 6 :type :fail :f :txn :value [[:append 2 509]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 510]]} + {:process 6 :type :fail :f :txn :value [[:append 0 510]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 511]]} + {:process 6 :type :fail :f :txn :value [[:append 5 511]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 512]]} + {:process 6 :type :fail :f :txn :value [[:append 3 512]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 513]]} + {:process 6 :type :fail :f :txn :value [[:append 4 513]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 514]]} + {:process 6 :type :fail :f :txn :value [[:append 2 514]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 515]]} + {:process 6 :type :fail :f :txn :value [[:append 7 515]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 516]]} + {:process 6 :type :fail :f :txn :value [[:append 5 516]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 517]]} + {:process 6 :type :fail :f :txn :value [[:append 6 517]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 518]]} + {:process 6 :type :fail :f :txn :value [[:append 4 518]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 519]]} + {:process 6 :type :fail :f :txn :value [[:append 1 519]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 520]]} + {:process 6 :type :fail :f :txn :value [[:append 7 520]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 521]]} + {:process 6 :type :fail :f :txn :value [[:append 0 521]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 522]]} + {:process 6 :type :fail :f :txn :value [[:append 6 522]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 523]]} + {:process 6 :type :fail :f :txn :value [[:append 3 523]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 524]]} + {:process 6 :type :fail :f :txn :value [[:append 1 524]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 525]]} + {:process 6 :type :fail :f :txn :value [[:append 2 525]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 526]]} + {:process 6 :type :fail :f :txn :value [[:append 0 526]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 527]]} + {:process 6 :type :fail :f :txn :value [[:append 5 527]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 528]]} + {:process 6 :type :fail :f :txn :value [[:append 3 528]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 529]]} + {:process 6 :type :fail :f :txn :value [[:append 4 529]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 530]]} + {:process 6 :type :fail :f :txn :value [[:append 2 530]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 531]]} + {:process 6 :type :fail :f :txn :value [[:append 7 531]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 532]]} + {:process 6 :type :fail :f :txn :value [[:append 5 532]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 533]]} + {:process 6 :type :fail :f :txn :value [[:append 6 533]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 534]]} + {:process 6 :type :fail :f :txn :value [[:append 4 534]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 535]]} + {:process 0 :type :fail :f :txn :value [[:append 0 493]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 536]]} + {:process 0 :type :fail :f :txn :value [[:append 7 536]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 537]]} + {:process 0 :type :fail :f :txn :value [[:append 5 537]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 538]]} + {:process 0 :type :fail :f :txn :value [[:append 4 538]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 539]]} + {:process 0 :type :fail :f :txn :value [[:append 2 539]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 540]]} + {:process 0 :type :fail :f :txn :value [[:append 1 540]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 541]]} + {:process 0 :type :fail :f :txn :value [[:append 7 541]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 542]]} + {:process 0 :type :fail :f :txn :value [[:append 6 542]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 543]]} + {:process 0 :type :fail :f :txn :value [[:append 4 543]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 544]]} + {:process 0 :type :fail :f :txn :value [[:append 3 544]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 545]]} + {:process 0 :type :fail :f :txn :value [[:append 1 545]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 546]]} + {:process 0 :type :fail :f :txn :value [[:append 0 546]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 547]]} + {:process 0 :type :fail :f :txn :value [[:append 6 547]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 548]]} + {:process 0 :type :fail :f :txn :value [[:append 5 548]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 549]]} + {:process 0 :type :fail :f :txn :value [[:append 3 549]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 550]]} + {:process 0 :type :fail :f :txn :value [[:append 2 550]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 551]]} + {:process 0 :type :fail :f :txn :value [[:append 0 551]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 552]]} + {:process 0 :type :fail :f :txn :value [[:append 7 552]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 553]]} + {:process 0 :type :fail :f :txn :value [[:append 5 553]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 554]]} + {:process 0 :type :fail :f :txn :value [[:append 4 554]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 555]]} + {:process 0 :type :fail :f :txn :value [[:append 2 555]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 556]]} + {:process 0 :type :fail :f :txn :value [[:append 1 556]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 557]]} + {:process 0 :type :fail :f :txn :value [[:append 7 557]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 558]]} + {:process 0 :type :fail :f :txn :value [[:append 6 558]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 559]]} + {:process 0 :type :fail :f :txn :value [[:append 4 559]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 560]]} + {:process 0 :type :fail :f :txn :value [[:append 3 560]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 561]]} + {:process 0 :type :fail :f :txn :value [[:append 1 561]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 562]]} + {:process 0 :type :fail :f :txn :value [[:append 0 562]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 563]]} + {:process 0 :type :fail :f :txn :value [[:append 6 563]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 564]]} + {:process 0 :type :fail :f :txn :value [[:append 5 564]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 565]]} + {:process 0 :type :fail :f :txn :value [[:append 3 565]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 566]]} + {:process 0 :type :fail :f :txn :value [[:append 2 566]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 567]]} + {:process 0 :type :fail :f :txn :value [[:append 0 567]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 568]]} + {:process 0 :type :fail :f :txn :value [[:append 7 568]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 569]]} + {:process 0 :type :fail :f :txn :value [[:append 5 569]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 570]]} + {:process 0 :type :fail :f :txn :value [[:append 4 570]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 571]]} + {:process 0 :type :fail :f :txn :value [[:append 2 571]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 572]]} + {:process 0 :type :fail :f :txn :value [[:append 1 572]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 573]]} + {:process 0 :type :fail :f :txn :value [[:append 7 573]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 574]]} + {:process 0 :type :fail :f :txn :value [[:append 6 574]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 575]]} + {:process 0 :type :fail :f :txn :value [[:append 4 575]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 576]]} + {:process 0 :type :fail :f :txn :value [[:append 3 576]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 577]]} + {:process 0 :type :fail :f :txn :value [[:append 1 577]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 578]]} + {:process 0 :type :fail :f :txn :value [[:append 0 578]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 579]]} + {:process 0 :type :fail :f :txn :value [[:append 6 579]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 580]]} + {:process 0 :type :fail :f :txn :value [[:append 5 580]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 581]]} + {:process 0 :type :fail :f :txn :value [[:append 3 581]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 582]]} + {:process 0 :type :fail :f :txn :value [[:append 2 582]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 583]]} + {:process 0 :type :fail :f :txn :value [[:append 0 583]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 584]]} + {:process 0 :type :fail :f :txn :value [[:append 7 584]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 585]]} + {:process 0 :type :fail :f :txn :value [[:append 5 585]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 586]]} + {:process 0 :type :fail :f :txn :value [[:append 4 586]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 587]]} + {:process 0 :type :fail :f :txn :value [[:append 2 587]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 588]]} + {:process 0 :type :fail :f :txn :value [[:append 1 588]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 589]]} + {:process 0 :type :fail :f :txn :value [[:append 7 589]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 590]]} + {:process 0 :type :fail :f :txn :value [[:append 6 590]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 591]]} + {:process 0 :type :fail :f :txn :value [[:append 4 591]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 592]]} + {:process 0 :type :fail :f :txn :value [[:append 3 592]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 593]]} + {:process 0 :type :fail :f :txn :value [[:append 1 593]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 594]]} + {:process 0 :type :fail :f :txn :value [[:append 0 594]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 595]]} + {:process 0 :type :fail :f :txn :value [[:append 6 595]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 596]]} + {:process 0 :type :fail :f :txn :value [[:append 5 596]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 597]]} + {:process 0 :type :fail :f :txn :value [[:append 3 597]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 598]]} + {:process 0 :type :fail :f :txn :value [[:append 2 598]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 599]]} + {:process 0 :type :fail :f :txn :value [[:append 0 599]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 600]]} + {:process 0 :type :fail :f :txn :value [[:append 7 600]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 601]]} + {:process 0 :type :fail :f :txn :value [[:append 5 601]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 602]]} + {:process 0 :type :fail :f :txn :value [[:append 4 602]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 603]]} + {:process 0 :type :fail :f :txn :value [[:append 2 603]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 604]]} + {:process 0 :type :fail :f :txn :value [[:append 1 604]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 605]]} + {:process 0 :type :fail :f :txn :value [[:append 7 605]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 606]]} + {:process 0 :type :fail :f :txn :value [[:append 6 606]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 607]]} + {:process 0 :type :fail :f :txn :value [[:append 4 607]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 608]]} + {:process 0 :type :fail :f :txn :value [[:append 3 608]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 609]]} + {:process 0 :type :fail :f :txn :value [[:append 1 609]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 610]]} + {:process 0 :type :fail :f :txn :value [[:append 0 610]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 611]]} + {:process 0 :type :fail :f :txn :value [[:append 6 611]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 612]]} + {:process 0 :type :fail :f :txn :value [[:append 5 612]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 613]]} + {:process 0 :type :fail :f :txn :value [[:append 3 613]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 614]]} + {:process 0 :type :fail :f :txn :value [[:append 2 614]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 615]]} + {:process 0 :type :fail :f :txn :value [[:append 0 615]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 616]]} + {:process 0 :type :fail :f :txn :value [[:append 7 616]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 617]]} + {:process 0 :type :fail :f :txn :value [[:append 5 617]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 618]]} + {:process 0 :type :fail :f :txn :value [[:append 4 618]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 619]]} + {:process 0 :type :fail :f :txn :value [[:append 2 619]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 620]]} + {:process 0 :type :fail :f :txn :value [[:append 1 620]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 621]]} + {:process 0 :type :fail :f :txn :value [[:append 7 621]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 622]]} + {:process 0 :type :fail :f :txn :value [[:append 6 622]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 623]]} + {:process 0 :type :fail :f :txn :value [[:append 4 623]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 624]]} + {:process 0 :type :fail :f :txn :value [[:append 3 624]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 625]]} + {:process 0 :type :fail :f :txn :value [[:append 1 625]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 626]]} + {:process 0 :type :fail :f :txn :value [[:append 0 626]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 627]]} + {:process 0 :type :fail :f :txn :value [[:append 6 627]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 628]]} + {:process 0 :type :fail :f :txn :value [[:append 5 628]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 629]]} + {:process 6 :type :fail :f :txn :value [[:append 1 535]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 629]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 630]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 631]]} + {:process 0 :type :fail :f :txn :value [[:append 2 630]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 631]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 633]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 632]]} + {:process 6 :type :fail :f :txn :value [[:append 0 633]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 634]]} + {:process 0 :type :fail :f :txn :value [[:append 0 632]]} + {:process 6 :type :fail :f :txn :value [[:append 6 634]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 636]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 635]]} + {:process 6 :type :fail :f :txn :value [[:append 3 636]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 637]]} + {:process 0 :type :fail :f :txn :value [[:append 7 635]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 638]]} + {:process 0 :type :fail :f :txn :value [[:append 5 638]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 639]]} + {:process 0 :type :fail :f :txn :value [[:append 4 639]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 640]]} + {:process 0 :type :fail :f :txn :value [[:append 2 640]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 641]]} + {:process 0 :type :fail :f :txn :value [[:append 1 641]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 642]]} + {:process 0 :type :fail :f :txn :value [[:append 7 642]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 643]]} + {:process 0 :type :fail :f :txn :value [[:append 6 643]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 644]]} + {:process 0 :type :fail :f :txn :value [[:append 4 644]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 645]]} + {:process 0 :type :fail :f :txn :value [[:append 3 645]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 646]]} + {:process 0 :type :fail :f :txn :value [[:append 1 646]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 647]]} + {:process 0 :type :fail :f :txn :value [[:append 0 647]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 648]]} + {:process 0 :type :fail :f :txn :value [[:append 6 648]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 649]]} + {:process 0 :type :fail :f :txn :value [[:append 5 649]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 650]]} + {:process 0 :type :fail :f :txn :value [[:append 3 650]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 651]]} + {:process 0 :type :fail :f :txn :value [[:append 2 651]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 652]]} + {:process 0 :type :fail :f :txn :value [[:append 0 652]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 653]]} + {:process 0 :type :fail :f :txn :value [[:append 7 653]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 654]]} + {:process 0 :type :fail :f :txn :value [[:append 5 654]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 655]]} + {:process 0 :type :fail :f :txn :value [[:append 4 655]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 656]]} + {:process 6 :type :fail :f :txn :value [[:append 1 637]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 657]]} + {:process 6 :type :fail :f :txn :value [[:append 2 657]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 658]]} + {:process 0 :type :fail :f :txn :value [[:append 2 656]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 659]]} + {:process 0 :type :fail :f :txn :value [[:append 1 659]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 660]]} + {:process 0 :type :fail :f :txn :value [[:append 7 660]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 661]]} + {:process 0 :type :fail :f :txn :value [[:append 6 661]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 662]]} + {:process 0 :type :fail :f :txn :value [[:append 4 662]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 663]]} + {:process 0 :type :fail :f :txn :value [[:append 3 663]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 664]]} + {:process 0 :type :fail :f :txn :value [[:append 1 664]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 665]]} + {:process 0 :type :fail :f :txn :value [[:append 0 665]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 666]]} + {:process 0 :type :fail :f :txn :value [[:append 6 666]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 667]]} + {:process 0 :type :fail :f :txn :value [[:append 5 667]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 668]]} + {:process 0 :type :fail :f :txn :value [[:append 3 668]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 669]]} + {:process 6 :type :fail :f :txn :value [[:append 0 658]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 670]]} + {:process 6 :type :fail :f :txn :value [[:append 5 670]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 671]]} + {:process 0 :type :fail :f :txn :value [[:append 2 669]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 672]]} + {:process 0 :type :fail :f :txn :value [[:append 0 672]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 673]]} + {:process 0 :type :fail :f :txn :value [[:append 7 673]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 674]]} + {:process 6 :type :fail :f :txn :value [[:append 3 671]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 675]]} + {:process 0 :type :fail :f :txn :value [[:append 5 674]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 676]]} + {:process 6 :type :fail :f :txn :value [[:append 4 675]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 677]]} + {:process 6 :type :fail :f :txn :value [[:append 2 677]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 678]]} + {:process 6 :type :fail :f :txn :value [[:append 7 678]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 676]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 679]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 680]]} + {:process 6 :type :fail :f :txn :value [[:append 5 679]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 681]]} + {:process 0 :type :fail :f :txn :value [[:append 2 680]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 682]]} + {:process 0 :type :fail :f :txn :value [[:append 1 682]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 683]]} + {:process 0 :type :fail :f :txn :value [[:append 7 683]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 684]]} + {:process 6 :type :fail :f :txn :value [[:append 6 681]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 685]]} + {:process 0 :type :fail :f :txn :value [[:append 6 684]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 686]]} + {:process 6 :type :fail :f :txn :value [[:append 4 685]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 687]]} + {:process 6 :type :fail :f :txn :value [[:append 1 687]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 688]]} + {:process 0 :type :fail :f :txn :value [[:append 4 686]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 689]]} + {:process 6 :type :fail :f :txn :value [[:append 7 688]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 690]]} + {:process 6 :type :fail :f :txn :value [[:append 0 690]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 691]]} + {:process 0 :type :fail :f :txn :value [[:append 3 689]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 692]]} + {:process 6 :type :fail :f :txn :value [[:append 6 691]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 693]]} + {:process 0 :type :fail :f :txn :value [[:append 1 692]]} + {:process 6 :type :fail :f :txn :value [[:append 3 693]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 695]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 694]]} + {:process 6 :type :fail :f :txn :value [[:append 1 695]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 696]]} + {:process 0 :type :fail :f :txn :value [[:append 0 694]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 2 696]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 697]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 698]]} + {:process 0 :type :fail :f :txn :value [[:append 6 697]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 699]]} + {:process 0 :type :fail :f :txn :value [[:append 5 699]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 700]]} + {:process 6 :type :fail :f :txn :value [[:append 0 698]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 701]]} + {:process 0 :type :fail :f :txn :value [[:append 3 700]]} + {:process 6 :type :fail :f :txn :value [[:append 5 701]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 703]]} + {:process 6 :type :fail :f :txn :value [[:append 3 703]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 704]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 702]]} + {:process 6 :type :fail :f :txn :value [[:append 4 704]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 705]]} + {:process 6 :type :fail :f :txn :value [[:append 2 705]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 706]]} + {:process 0 :type :fail :f :txn :value [[:append 2 702]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 707]]} + {:process 0 :type :fail :f :txn :value [[:append 0 707]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 708]]} + {:process 0 :type :fail :f :txn :value [[:append 7 708]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 709]]} + {:process 6 :type :fail :f :txn :value [[:append 7 706]]} + {:process 0 :type :fail :f :txn :value [[:append 5 709]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 710]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 711]]} + {:process 0 :type :fail :f :txn :value [[:append 4 710]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 712]]} + {:process 0 :type :fail :f :txn :value [[:append 2 712]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 713]]} + {:process 6 :type :fail :f :txn :value [[:append 5 711]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 714]]} + {:process 6 :type :fail :f :txn :value [[:append 6 714]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 715]]} + {:process 0 :type :fail :f :txn :value [[:append 1 713]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 716]]} + {:process 0 :type :fail :f :txn :value [[:append 7 716]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 717]]} + {:process 6 :type :fail :f :txn :value [[:append 4 715]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 718]]} + {:process 6 :type :fail :f :txn :value [[:append 1 718]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 719]]} + {:process 0 :type :fail :f :txn :value [[:append 6 717]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 720]]} + {:process 6 :type :fail :f :txn :value [[:append 7 719]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 721]]} + {:process 0 :type :fail :f :txn :value [[:append 4 720]]} + {:process 6 :type :fail :f :txn :value [[:append 0 721]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 723]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 722]]} + {:process 6 :type :fail :f :txn :value [[:append 6 723]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 724]]} + {:process 0 :type :fail :f :txn :value [[:append 3 722]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 725]]} + {:process 0 :type :fail :f :txn :value [[:append 1 725]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 726]]} + {:process 6 :type :fail :f :txn :value [[:append 3 724]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 727]]} + {:process 0 :type :fail :f :txn :value [[:append 0 726]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 728]]} + {:process 6 :type :fail :f :txn :value [[:append 1 727]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 729]]} + {:process 6 :type :fail :f :txn :value [[:append 2 729]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 730]]} + {:process 0 :type :fail :f :txn :value [[:append 6 728]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 731]]} + {:process 6 :type :fail :f :txn :value [[:append 0 730]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 732]]} + {:process 6 :type :fail :f :txn :value [[:append 5 732]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 733]]} + {:process 0 :type :fail :f :txn :value [[:append 5 731]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 734]]} + {:process 0 :type :fail :f :txn :value [[:append 3 734]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 735]]} + {:process 6 :type :fail :f :txn :value [[:append 3 733]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 736]]} + {:process 0 :type :fail :f :txn :value [[:append 2 735]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 737]]} + {:process 6 :type :fail :f :txn :value [[:append 4 736]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 738]]} + {:process 0 :type :fail :f :txn :value [[:append 0 737]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 739]]} + {:process 0 :type :fail :f :txn :value [[:append 7 739]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 740]]} + {:process 0 :type :fail :f :txn :value [[:append 5 740]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 741]]} + {:process 6 :type :fail :f :txn :value [[:append 2 738]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 742]]} + {:process 6 :type :fail :f :txn :value [[:append 7 742]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 743]]} + {:process 0 :type :fail :f :txn :value [[:append 4 741]]} + {:process 6 :type :fail :f :txn :value [[:append 5 743]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 744]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 6 744]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 746]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 745]]} + {:process 6 :type :fail :f :txn :value [[:append 4 746]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 747]]} + {:process 6 :type :fail :f :txn :value [[:append 1 747]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 748]]} + {:process 0 :type :fail :f :txn :value [[:append 2 745]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 749]]} + {:process 0 :type :fail :f :txn :value [[:append 1 749]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 748]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 751]]} + {:process 6 :type :fail :f :txn :value [[:append 0 751]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 752]]} + {:process 6 :type :fail :f :txn :value [[:append 6 752]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 753]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 750]]} + {:process 6 :type :fail :f :txn :value [[:append 3 753]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 754]]} + {:process 6 :type :fail :f :txn :value [[:append 1 754]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 755]]} + {:process 0 :type :fail :f :txn :value [[:append 7 750]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 756]]} + {:process 6 :type :fail :f :txn :value [[:append 2 755]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 757]]} + {:process 0 :type :fail :f :txn :value [[:append 6 756]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 758]]} + {:process 6 :type :fail :f :txn :value [[:append 0 757]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 759]]} + {:process 6 :type :fail :f :txn :value [[:append 5 759]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 760]]} + {:process 0 :type :fail :f :txn :value [[:append 4 758]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 761]]} + {:process 0 :type :fail :f :txn :value [[:append 3 761]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 762]]} + {:process 6 :type :fail :f :txn :value [[:append 3 760]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 763]]} + {:process 6 :type :fail :f :txn :value [[:append 4 763]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 764]]} + {:process 0 :type :fail :f :txn :value [[:append 1 762]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 765]]} + {:process 6 :type :fail :f :txn :value [[:append 2 764]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 766]]} + {:process 0 :type :fail :f :txn :value [[:append 0 765]]} + {:process 6 :type :fail :f :txn :value [[:append 7 766]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 767]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 768]]} + {:process 6 :type :fail :f :txn :value [[:append 5 767]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 769]]} + {:process 0 :type :fail :f :txn :value [[:append 6 768]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 770]]} + {:process 6 :type :fail :f :txn :value [[:append 6 769]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 771]]} + {:process 0 :type :fail :f :txn :value [[:append 5 770]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 772]]} + {:process 0 :type :fail :f :txn :value [[:append 3 772]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 773]]} + {:process 6 :type :fail :f :txn :value [[:append 4 771]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 774]]} + {:process 0 :type :fail :f :txn :value [[:append 2 773]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 775]]} + {:process 6 :type :fail :f :txn :value [[:append 1 774]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 776]]} + {:process 0 :type :fail :f :txn :value [[:append 0 775]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 777]]} + {:process 0 :type :fail :f :txn :value [[:append 7 777]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 778]]} + {:process 6 :type :fail :f :txn :value [[:append 7 776]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 779]]} + {:process 6 :type :fail :f :txn :value [[:append 0 779]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 780]]} + {:process 0 :type :fail :f :txn :value [[:append 5 778]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 781]]} + {:process 0 :type :fail :f :txn :value [[:append 4 781]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 782]]} + {:process 6 :type :fail :f :txn :value [[:append 6 780]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 783]]} + {:process 6 :type :fail :f :txn :value [[:append 3 783]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 784]]} + {:process 0 :type :fail :f :txn :value [[:append 2 782]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 785]]} + {:process 0 :type :fail :f :txn :value [[:append 1 785]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 786]]} + {:process 6 :type :fail :f :txn :value [[:append 1 784]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 787]]} + {:process 0 :type :fail :f :txn :value [[:append 7 786]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 788]]} + {:process 6 :type :fail :f :txn :value [[:append 2 787]]} + {:process 0 :type :fail :f :txn :value [[:append 6 788]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 789]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 789]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 790]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 791]]} + {:process 0 :type :fail :f :txn :value [[:append 3 790]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 792]]} + {:process 6 :type :fail :f :txn :value [[:append 0 791]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 793]]} + {:process 0 :type :fail :f :txn :value [[:append 1 792]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 794]]} + {:process 0 :type :fail :f :txn :value [[:append 0 794]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 795]]} + {:process 0 :type :fail :f :txn :value [[:append 6 795]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 796]]} + {:process 0 :type :fail :f :txn :value [[:append 5 796]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 797]]} + {:process 0 :type :fail :f :txn :value [[:append 3 797]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 798]]} + {:process 0 :type :fail :f :txn :value [[:append 2 798]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 799]]} + {:process 0 :type :fail :f :txn :value [[:append 0 799]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 800]]} + {:process 0 :type :fail :f :txn :value [[:append 7 800]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 801]]} + {:process 0 :type :fail :f :txn :value [[:append 5 801]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 802]]} + {:process 0 :type :fail :f :txn :value [[:append 4 802]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 803]]} + {:process 0 :type :fail :f :txn :value [[:append 2 803]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 804]]} + {:process 0 :type :fail :f :txn :value [[:append 1 804]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 805]]} + {:process 0 :type :fail :f :txn :value [[:append 7 805]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 806]]} + {:process 0 :type :fail :f :txn :value [[:append 6 806]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 807]]} + {:process 0 :type :fail :f :txn :value [[:append 4 807]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 808]]} + {:process 0 :type :fail :f :txn :value [[:append 3 808]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 809]]} + {:process 6 :type :fail :f :txn :value [[:append 5 793]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 810]]} + {:process 0 :type :fail :f :txn :value [[:append 1 809]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 811]]} + {:process 6 :type :fail :f :txn :value [[:append 3 810]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 812]]} + {:process 6 :type :fail :f :txn :value [[:append 4 812]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 813]]} + {:process 0 :type :fail :f :txn :value [[:append 0 811]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 814]]} + {:process 6 :type :fail :f :txn :value [[:append 2 813]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 815]]} + {:process 6 :type :fail :f :txn :value [[:append 7 815]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 816]]} + {:process 0 :type :fail :f :txn :value [[:append 6 814]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 817]]} + {:process 0 :type :fail :f :txn :value [[:append 5 817]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 818]]} + {:process 6 :type :fail :f :txn :value [[:append 5 816]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 819]]} + {:process 6 :type :fail :f :txn :value [[:append 6 819]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 820]]} + {:process 0 :type :fail :f :txn :value [[:append 3 818]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 821]]} + {:process 0 :type :fail :f :txn :value [[:append 2 821]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 822]]} + {:process 6 :type :fail :f :txn :value [[:append 4 820]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 823]]} + {:process 0 :type :fail :f :txn :value [[:append 0 822]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 824]]} + {:process 6 :type :fail :f :txn :value [[:append 1 823]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 825]]} + {:process 0 :type :fail :f :txn :value [[:append 7 824]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 826]]} + {:process 6 :type :fail :f :txn :value [[:append 7 825]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 827]]} + {:process 6 :type :fail :f :txn :value [[:append 0 827]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 828]]} + {:process 0 :type :fail :f :txn :value [[:append 5 826]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 829]]} + {:process 6 :type :fail :f :txn :value [[:append 6 828]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 830]]} + {:process 0 :type :fail :f :txn :value [[:append 4 829]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 831]]} + {:process 6 :type :fail :f :txn :value [[:append 3 830]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 832]]} + {:process 0 :type :fail :f :txn :value [[:append 2 831]]} + {:process 6 :type :fail :f :txn :value [[:append 1 832]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 834]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 833]]} + {:process 6 :type :fail :f :txn :value [[:append 2 834]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 835]]} + {:process 0 :type :fail :f :txn :value [[:append 1 833]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 836]]} + {:process 6 :type :fail :f :txn :value [[:append 0 835]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 837]]} + {:process 6 :type :fail :f :txn :value [[:append 5 837]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 838]]} + {:process 0 :type :fail :f :txn :value [[:append 7 836]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 839]]} + {:process 6 :type :fail :f :txn :value [[:append 3 838]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 840]]} + {:process 6 :type :fail :f :txn :value [[:append 4 840]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 841]]} + {:process 0 :type :fail :f :txn :value [[:append 6 839]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 2 841]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 842]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 843]]} + {:process 0 :type :fail :f :txn :value [[:append 4 842]]} + {:process 6 :type :fail :f :txn :value [[:append 7 843]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 845]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 844]]} + {:process 6 :type :fail :f :txn :value [[:append 5 845]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 846]]} + {:process 0 :type :fail :f :txn :value [[:append 3 844]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 847]]} + {:process 6 :type :fail :f :txn :value [[:append 6 846]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 848]]} + {:process 0 :type :fail :f :txn :value [[:append 1 847]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 849]]} + {:process 0 :type :fail :f :txn :value [[:append 0 849]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 850]]} + {:process 6 :type :fail :f :txn :value [[:append 4 848]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 851]]} + {:process 6 :type :fail :f :txn :value [[:append 1 851]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 852]]} + {:process 0 :type :fail :f :txn :value [[:append 6 850]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 853]]} + {:process 6 :type :fail :f :txn :value [[:append 7 852]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 854]]} + {:process 6 :type :fail :f :txn :value [[:append 0 854]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 855]]} + {:process 0 :type :fail :f :txn :value [[:append 5 853]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 856]]} + {:process 6 :type :fail :f :txn :value [[:append 6 855]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 857]]} + {:process 6 :type :fail :f :txn :value [[:append 3 857]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 858]]} + {:process 0 :type :fail :f :txn :value [[:append 3 856]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 859]]} + {:process 0 :type :fail :f :txn :value [[:append 2 859]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 858]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 861]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 860]]} + {:process 6 :type :fail :f :txn :value [[:append 2 861]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 862]]} + {:process 0 :type :fail :f :txn :value [[:append 0 860]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 863]]} + {:process 0 :type :fail :f :txn :value [[:append 7 863]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 0 862]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 865]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 864]]} + {:process 6 :type :fail :f :txn :value [[:append 5 865]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 866]]} + {:process 0 :type :fail :f :txn :value [[:append 5 864]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 867]]} + {:process 6 :type :fail :f :txn :value [[:append 3 866]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 868]]} + {:process 0 :type :fail :f :txn :value [[:append 4 867]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 869]]} + {:process 6 :type :fail :f :txn :value [[:append 4 868]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 870]]} + {:process 6 :type :fail :f :txn :value [[:append 2 870]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 871]]} + {:process 0 :type :fail :f :txn :value [[:append 2 869]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 872]]} + {:process 6 :type :fail :f :txn :value [[:append 7 871]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 873]]} + {:process 6 :type :fail :f :txn :value [[:append 5 873]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 874]]} + {:process 6 :type :fail :f :txn :value [[:append 6 874]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 875]]} + {:process 0 :type :fail :f :txn :value [[:append 1 872]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 876]]} + {:process 6 :type :fail :f :txn :value [[:append 4 875]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 877]]} + {:process 0 :type :fail :f :txn :value [[:append 7 876]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 878]]} + {:process 0 :type :fail :f :txn :value [[:append 6 878]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 877]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 880]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 879]]} + {:process 6 :type :fail :f :txn :value [[:append 7 880]]} + {:process 0 :type :fail :f :txn :value [[:append 4 879]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 881]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 882]]} + {:process 0 :type :fail :f :txn :value [[:append 3 881]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 883]]} + {:process 6 :type :fail :f :txn :value [[:append 0 882]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 884]]} + {:process 0 :type :fail :f :txn :value [[:append 1 883]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 885]]} + {:process 0 :type :fail :f :txn :value [[:append 0 885]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 886]]} + {:process 6 :type :fail :f :txn :value [[:append 6 884]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 887]]} + {:process 6 :type :fail :f :txn :value [[:append 3 887]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 888]]} + {:process 0 :type :fail :f :txn :value [[:append 6 886]]} + {:process 6 :type :fail :f :txn :value [[:append 1 888]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 889]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 890]]} + {:process 6 :type :fail :f :txn :value [[:append 2 889]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 891]]} + {:process 6 :type :fail :f :txn :value [[:append 0 891]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 892]]} + {:process 0 :type :fail :f :txn :value [[:append 5 890]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 893]]} + {:process 6 :type :fail :f :txn :value [[:append 5 892]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 894]]} + {:process 0 :type :fail :f :txn :value [[:append 3 893]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 895]]} + {:process 0 :type :fail :f :txn :value [[:append 2 895]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 896]]} + {:process 6 :type :fail :f :txn :value [[:append 3 894]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 897]]} + {:process 6 :type :fail :f :txn :value [[:append 4 897]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 898]]} + {:process 0 :type :fail :f :txn :value [[:append 0 896]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 899]]} + {:process 6 :type :fail :f :txn :value [[:append 2 898]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 900]]} + {:process 6 :type :fail :f :txn :value [[:append 7 900]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 901]]} + {:process 6 :type :fail :f :txn :value [[:append 5 901]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 902]]} + {:process 0 :type :fail :f :txn :value [[:append 7 899]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 903]]} + {:process 6 :type :fail :f :txn :value [[:append 6 902]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 904]]} + {:process 0 :type :fail :f :txn :value [[:append 5 903]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 905]]} + {:process 0 :type :fail :f :txn :value [[:append 4 905]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 906]]} + {:process 6 :type :fail :f :txn :value [[:append 4 904]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 907]]} + {:process 6 :type :fail :f :txn :value [[:append 1 907]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 908]]} + {:process 0 :type :fail :f :txn :value [[:append 2 906]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 909]]} + {:process 0 :type :fail :f :txn :value [[:append 1 909]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 910]]} + {:process 6 :type :fail :f :txn :value [[:append 7 908]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 911]]} + {:process 0 :type :fail :f :txn :value [[:append 7 910]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 912]]} + {:process 0 :type :fail :f :txn :value [[:append 6 912]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 913]]} + {:process 6 :type :fail :f :txn :value [[:append 0 911]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 914]]} + {:process 6 :type :fail :f :txn :value [[:append 6 914]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 915]]} + {:process 0 :type :fail :f :txn :value [[:append 4 913]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 916]]} + {:process 6 :type :fail :f :txn :value [[:append 3 915]]} + {:process 0 :type :fail :f :txn :value [[:append 3 916]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 917]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 918]]} + {:process 0 :type :fail :f :txn :value [[:append 1 917]]} + {:process 6 :type :fail :f :txn :value [[:append 1 918]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 920]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 919]]} + {:process 6 :type :fail :f :txn :value [[:append 2 920]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 921]]} + {:process 6 :type :fail :f :txn :value [[:append 0 921]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 922]]} + {:process 6 :type :fail :f :txn :value [[:append 5 922]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 923]]} + {:process 0 :type :fail :f :txn :value [[:append 0 919]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 923]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 924]]} + {:process 6 :type :fail :f :txn :value [[:append 4 924]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 925]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 2 925]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 926]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 927]]} + {:process 0 :type :fail :f :txn :value [[:append 6 926]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 928]]} + {:process 6 :type :fail :f :txn :value [[:append 7 927]]} + {:process 0 :type :fail :f :txn :value [[:append 5 928]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 929]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 929]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 930]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 931]]} + {:process 0 :type :fail :f :txn :value [[:append 2 930]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 932]]} + {:process 6 :type :fail :f :txn :value [[:append 5 931]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 933]]} + {:process 0 :type :fail :f :txn :value [[:append 0 932]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 934]]} + {:process 6 :type :fail :f :txn :value [[:append 6 933]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 935]]} + {:process 6 :type :fail :f :txn :value [[:append 4 935]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 936]]} + {:process 0 :type :fail :f :txn :value [[:append 7 934]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 937]]} + {:process 6 :type :fail :f :txn :value [[:append 1 936]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 937]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 938]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 939]]} + {:process 6 :type :fail :f :txn :value [[:append 7 939]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 940]]} + {:process 6 :type :fail :f :txn :value [[:append 0 940]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 941]]} + {:process 0 :type :fail :f :txn :value [[:append 4 938]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 942]]} + {:process 6 :type :fail :f :txn :value [[:append 6 941]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 943]]} + {:process 6 :type :fail :f :txn :value [[:append 3 943]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 944]]} + {:process 6 :type :fail :f :txn :value [[:append 1 944]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 945]]} + {:process 0 :type :fail :f :txn :value [[:append 2 942]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 946]]} + {:process 0 :type :fail :f :txn :value [[:append 1 946]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 947]]} + {:process 6 :type :fail :f :txn :value [[:append 2 945]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 948]]} + {:process 0 :type :fail :f :txn :value [[:append 7 947]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 949]]} + {:process 6 :type :fail :f :txn :value [[:append 0 948]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 950]]} + {:process 0 :type :fail :f :txn :value [[:append 6 949]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 951]]} + {:process 6 :type :fail :f :txn :value [[:append 5 950]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 952]]} + {:process 0 :type :fail :f :txn :value [[:append 4 951]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 953]]} + {:process 6 :type :fail :f :txn :value [[:append 3 952]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 954]]} + {:process 0 :type :fail :f :txn :value [[:append 3 953]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 955]]} + {:process 0 :type :fail :f :txn :value [[:append 1 955]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 956]]} + {:process 6 :type :fail :f :txn :value [[:append 4 954]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 957]]} + {:process 0 :type :fail :f :txn :value [[:append 0 956]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 958]]} + {:process 0 :type :fail :f :txn :value [[:append 6 958]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 959]]} + {:process 0 :type :fail :f :txn :value [[:append 5 959]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 960]]} + {:process 0 :type :fail :f :txn :value [[:append 3 960]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 961]]} + {:process 0 :type :fail :f :txn :value [[:append 2 961]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 962]]} + {:process 6 :type :fail :f :txn :value [[:append 2 957]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 963]]} + {:process 0 :type :fail :f :txn :value [[:append 0 962]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 964]]} + {:process 6 :type :fail :f :txn :value [[:append 7 963]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 965]]} + {:process 0 :type :fail :f :txn :value [[:append 7 964]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 966]]} + {:process 6 :type :fail :f :txn :value [[:append 5 965]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 967]]} + {:process 0 :type :fail :f :txn :value [[:append 5 966]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 968]]} + {:process 6 :type :fail :f :txn :value [[:append 6 967]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 969]]} + {:process 0 :type :fail :f :txn :value [[:append 4 968]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 970]]} + {:process 6 :type :fail :f :txn :value [[:append 4 969]]} + {:process 0 :type :fail :f :txn :value [[:append 2 970]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 971]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 972]]} + {:process 0 :type :fail :f :txn :value [[:append 1 971]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 973]]} + {:process 6 :type :fail :f :txn :value [[:append 1 972]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 974]]} + {:process 0 :type :fail :f :txn :value [[:append 7 973]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 975]]} + {:process 6 :type :fail :f :txn :value [[:append 7 974]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 976]]} + {:process 6 :type :fail :f :txn :value [[:append 0 976]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 977]]} + {:process 0 :type :fail :f :txn :value [[:append 6 975]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 978]]} + {:process 6 :type :fail :f :txn :value [[:append 6 977]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 979]]} + {:process 6 :type :fail :f :txn :value [[:append 3 979]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 980]]} + {:process 0 :type :fail :f :txn :value [[:append 4 978]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 981]]} + {:process 6 :type :fail :f :txn :value [[:append 1 980]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 982]]} + {:process 0 :type :fail :f :txn :value [[:append 3 981]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 983]]} + {:process 6 :type :fail :f :txn :value [[:append 2 982]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 984]]} + {:process 0 :type :fail :f :txn :value [[:append 1 983]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 985]]} + {:process 6 :type :fail :f :txn :value [[:append 0 984]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 986]]} + {:process 0 :type :fail :f :txn :value [[:append 0 985]]} + {:process 6 :type :fail :f :txn :value [[:append 5 986]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 987]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 988]]} + {:process 6 :type :fail :f :txn :value [[:append 3 987]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 989]]} + {:process 0 :type :fail :f :txn :value [[:append 6 988]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 990]]} + {:process 0 :type :fail :f :txn :value [[:append 5 990]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 991]]} + {:process 6 :type :fail :f :txn :value [[:append 4 989]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 991]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 992]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 993]]} + {:process 6 :type :fail :f :txn :value [[:append 2 992]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 994]]} + {:process 0 :type :fail :f :txn :value [[:append 2 993]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 994]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 995]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 996]]} + {:process 0 :type :fail :f :txn :value [[:append 0 995]]} + {:process 6 :type :fail :f :txn :value [[:append 5 996]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 998]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 997]]} + {:process 6 :type :fail :f :txn :value [[:append 6 998]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 999]]} + {:process 0 :type :fail :f :txn :value [[:append 7 997]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1000]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1000]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1001]]} + {:process 6 :type :fail :f :txn :value [[:append 4 999]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1002]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1001]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1003]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1002]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1004]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1003]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1005]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1005]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1006]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1004]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1007]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1006]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1008]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1008]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1009]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1007]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1010]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1009]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1011]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1010]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1012]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1011]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1013]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1012]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1014]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1013]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1015]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1015]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1016]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1014]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1017]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1017]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1018]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1016]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1019]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1018]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1020]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1020]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1021]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1019]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1022]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1021]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1023]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1023]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1024]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1022]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1025]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1025]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1026]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1024]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1027]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1026]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1028]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1028]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1029]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1027]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1030]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1029]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1031]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1030]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1032]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1031]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1033]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1032]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1034]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1033]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1035]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1035]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1036]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1034]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1037]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1036]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1038]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1038]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1039]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1037]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1040]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1039]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1041]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1040]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1042]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1041]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1043]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1042]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1044]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1043]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1045]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1044]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1046]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1045]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1047]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1046]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1048]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1047]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1049]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1049]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1050]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1048]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1050]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1051]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1052]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1052]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1053]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1051]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1054]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1053]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1055]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1054]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1056]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1056]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1057]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1055]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1058]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1057]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1059]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1058]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1060]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1059]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1061]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1060]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1061]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1062]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1062]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1063]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1064]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1063]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1065]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1064]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1066]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1065]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1067]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1066]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1068]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1067]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1069]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1069]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1070]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1068]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1071]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1070]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1072]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1072]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1073]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1071]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1074]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1073]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1075]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1075]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1076]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1074]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1077]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1077]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1078]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1076]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1079]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1078]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1080]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1080]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1081]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1079]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1082]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1082]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1083]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1081]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1084]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1084]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1085]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1083]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1086]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1085]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1087]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1087]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1088]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1086]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1089]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1089]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1090]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1088]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1091]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1091]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1092]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1090]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1092]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1093]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1094]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1093]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1094]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1095]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1096]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1096]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1097]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1095]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1098]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1097]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1099]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1098]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1100]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1099]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1101]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1100]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1102]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1102]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1103]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1101]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1104]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1103]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1105]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1105]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1106]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1104]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1107]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1107]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1108]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1106]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1109]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1108]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1110]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1109]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1111]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1110]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1111]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1112]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1113]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1112]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1114]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1113]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1115]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1115]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1116]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1114]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1117]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1117]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1118]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1116]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1119]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1119]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1120]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1118]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1121]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1121]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1122]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1120]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1122]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1123]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1124]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1123]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1125]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1124]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1126]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1126]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1127]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1127]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1125]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1128]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1129]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1128]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1130]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1129]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1131]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1130]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1132]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1131]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1133]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1132]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1134]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1133]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1135]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1135]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1136]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1134]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1137]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1137]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1136]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1139]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1138]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1139]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1140]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1138]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1141]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1141]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1142]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1140]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1143]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1142]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1144]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1144]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1145]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1143]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1146]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1145]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1147]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1146]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1148]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1147]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1149]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1149]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1150]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1148]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1151]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1150]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1152]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1151]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1152]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1154]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1153]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1154]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1155]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1153]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1156]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1155]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1156]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1157]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1158]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1157]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1159]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1158]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1160]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1160]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1161]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1159]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1162]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1161]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1163]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1162]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1164]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1164]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1165]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1163]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1165]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1166]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1167]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1166]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1168]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1167]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1169]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1168]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1170]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1169]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1171]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1171]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1172]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1170]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1173]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1172]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1174]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1173]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1175]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1174]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1176]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1176]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1177]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1175]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1177]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1178]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1178]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1179]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1180]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1179]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1181]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1180]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1182]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1181]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1183]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1182]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1184]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1184]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1185]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1183]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1186]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1186]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1187]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1185]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1188]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1187]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1189]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1189]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1190]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1188]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1191]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1190]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1192]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1191]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1193]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1192]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1194]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1193]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1195]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1195]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1196]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1194]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1197]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1196]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1198]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1198]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1199]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1197]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1200]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1199]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1201]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1200]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1202]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1201]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1203]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1202]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1204]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1203]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1205]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1205]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1206]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1204]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1207]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1206]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1208]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1208]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1209]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1207]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1210]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1210]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1211]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1209]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1212]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1211]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1213]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1213]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1214]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1212]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1215]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1214]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1216]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1216]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1217]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1215]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1218]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1218]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1219]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1217]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1219]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1221]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1220]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1221]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1222]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1220]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1223]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1223]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1224]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1222]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1225]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1224]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1226]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1226]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1227]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1225]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1228]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1227]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1229]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1228]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1230]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1229]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1231]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1231]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1232]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1230]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1233]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1232]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1234]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1233]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1235]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1235]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1236]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1234]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1237]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1237]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1238]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1236]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1238]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1239]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1240]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1239]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1241]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1240]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1242]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1241]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1243]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1242]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1244]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1244]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1243]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1245]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1246]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1245]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1247]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1246]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1248]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1247]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1249]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1248]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1250]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1249]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1251]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1250]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1252]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1252]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1253]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1251]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1254]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1253]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1255]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1254]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1256]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1255]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1257]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1257]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1258]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1258]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1259]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1256]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1260]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1259]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1261]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1261]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1262]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1260]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1263]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1262]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1264]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1264]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1265]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1263]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1266]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1265]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1267]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1267]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1268]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1266]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1269]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1269]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1270]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1270]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1271]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1271]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1272]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1268]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1273]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1273]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1274]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1272]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1275]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1275]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1276]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1274]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1277]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1277]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1278]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1276]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1279]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1278]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1280]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1280]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1281]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1279]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1282]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1281]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1283]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1283]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1284]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1284]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1285]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1282]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1286]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1286]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1287]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1285]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1288]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1287]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1289]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1288]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1290]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1289]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1291]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1290]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1292]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1291]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1293]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1293]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1294]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1292]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1295]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1294]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1296]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1296]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1297]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1297]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1298]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1295]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1299]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1298]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1300]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1299]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1301]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1300]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1302]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1301]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1303]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1302]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1304]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1303]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1305]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1304]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1306]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1305]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1307]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1306]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1308]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1307]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1309]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1308]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1310]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1309]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1310]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1311]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1312]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1311]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1313]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1312]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1314]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1313]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1315]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1315]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1316]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1316]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1317]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1317]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1318]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1314]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1319]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1318]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1320]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1320]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1321]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1319]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1322]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1321]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1323]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1323]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1324]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1322]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1325]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1324]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1326]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1325]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1327]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1326]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1327]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1328]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1329]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1328]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1329]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1330]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1331]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1330]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1332]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1331]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1333]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1332]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1334]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1334]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1335]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1333]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1336]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1336]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1337]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1335]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1338]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1337]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1338]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1339]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1340]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1339]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1341]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1340]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1342]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1341]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1343]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1342]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1344]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1343]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1345]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1344]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1346]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1345]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1347]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1346]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1348]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1347]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1349]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1349]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1350]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1348]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1351]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1351]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1352]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1350]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1353]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1352]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1354]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1353]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1355]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1354]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1356]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1355]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1357]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1356]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1358]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1358]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1359]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1359]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1360]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1357]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1360]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1361]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1362]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1361]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1363]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1362]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1364]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1364]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1365]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1365]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1366]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1363]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1367]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1366]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1368]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1367]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1369]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1368]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1370]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1369]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1371]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1370]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1372]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1372]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1373]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1371]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1374]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1373]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1375]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1374]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1376]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1375]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1377]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1377]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1378]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1378]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1379]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1376]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1380]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1379]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1381]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1380]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1382]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1381]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1383]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1382]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1384]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1383]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1385]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1385]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1386]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1386]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1387]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1384]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1388]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1387]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1389]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1388]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1390]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1389]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1391]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1391]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1392]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1390]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1393]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1392]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1394]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1393]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1395]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1394]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1396]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1395]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1397]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1396]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1398]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1397]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1399]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1398]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1400]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1400]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1401]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1399]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1402]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1401]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1403]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1402]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1404]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1403]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1405]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1405]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1406]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1406]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1407]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1407]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1408]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1408]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1409]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1409]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1410]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1410]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1411]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1404]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1411]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1412]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1412]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1413]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1414]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1413]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1415]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1414]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1416]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1416]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1417]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1415]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1418]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1417]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1419]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1418]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1420]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1419]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1421]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1421]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1422]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1420]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1423]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1422]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1424]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1423]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1425]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1425]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1424]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1426]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1427]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1426]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1428]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1428]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1429]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1427]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1429]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1430]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1430]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1431]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1431]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1432]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1432]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1433]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1433]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1434]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1434]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1435]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1435]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1436]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1436]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1437]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1438]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1438]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1439]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1439]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1437]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1441]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1440]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1441]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1442]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1440]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1443]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1442]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1444]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1443]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1445]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1444]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1446]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1445]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1447]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1447]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1448]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1446]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1449]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1448]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1450]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1450]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1449]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1451]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1452]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1451]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1453]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1452]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1454]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1454]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1455]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1453]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1456]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1455]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1457]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1457]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1458]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1456]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1459]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1458]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1460]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1460]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1461]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1459]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1462]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1461]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1463]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1462]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1464]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1463]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1465]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1464]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1466]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1466]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1467]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1465]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1468]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1467]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1469]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1469]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1470]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1470]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1471]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1468]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1472]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1471]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1473]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1472]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1473]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1475]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1474]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1475]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1476]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1474]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1477]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1476]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1478]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1477]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1479]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1478]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1480]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1479]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1481]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1480]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1482]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1481]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1483]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1482]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1484]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1483]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1485]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1484]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1486]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1486]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1487]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1485]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1488]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1488]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1489]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1487]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1490]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1489]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1490]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1492]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1491]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1491]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1493]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1492]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1494]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1493]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1495]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1495]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1496]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1494]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1497]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1496]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1498]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1498]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1499]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1497]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1500]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1500]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1499]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1501]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1502]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1501]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1502]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1503]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1504]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1503]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1505]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1505]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1504]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1506]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1507]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1506]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1508]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1507]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1509]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1509]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1510]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1508]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1511]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1511]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1512]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1510]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1513]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1512]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1514]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1513]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1515]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1514]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1516]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1515]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1517]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1516]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1518]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1517]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1519]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1518]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1520]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1519]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1521]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1520]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1522]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1521]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1523]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1522]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1524]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1523]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1525]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1524]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1526]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1525]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1527]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1527]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1528]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1526]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1529]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1528]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1530]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1529]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1531]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1530]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1531]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1532]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1533]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1532]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1534]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1533]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1535]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1534]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1536]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1536]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1537]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1535]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1538]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1537]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1539]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1538]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1540]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1539]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1541]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1540]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1542]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1541]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1543]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1542]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1544]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1544]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1545]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1543]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1546]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1545]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1547]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1546]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1548]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1548]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1549]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1547]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1550]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1549]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1551]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1551]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1552]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1552]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1553]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1553]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1554]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1554]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1555]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1550]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1556]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1555]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1557]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1557]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1558]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1558]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1559]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1556]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1560]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1559]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1561]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1560]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1562]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1562]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1563]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1561]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1564]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1563]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1565]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1564]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1566]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1566]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1567]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1565]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1567]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1568]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1569]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1568]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1570]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1570]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1571]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1569]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1572]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1571]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1573]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1573]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1574]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1574]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1575]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1575]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1576]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1576]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1577]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1577]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1578]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1572]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1579]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1579]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1580]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1578]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1581]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1580]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1582]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1581]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1583]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1582]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1584]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1583]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1585]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1584]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1586]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1586]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1587]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1585]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1588]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1587]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1589]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1588]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1590]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1590]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1591]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1589]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1591]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1592]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1593]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1592]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1594]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1593]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1595]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1595]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1596]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1594]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1597]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1596]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1598]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1598]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1599]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1597]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1600]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1600]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1601]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1599]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1601]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1603]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1602]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1603]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1604]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1602]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1605]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1604]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1606]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1605]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1607]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1606]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1607]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1609]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1608]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1609]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1610]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1608]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1611]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1610]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1612]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1611]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1613]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1612]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1614]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1614]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1615]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1613]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1616]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1615]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1616]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1617]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1618]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1617]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1619]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1618]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1620]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1619]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1621]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1621]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1622]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1620]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1623]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1622]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1624]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1624]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1625]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1623]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1626]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1625]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1627]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1627]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1628]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1626]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1629]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1629]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1630]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1628]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1630]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1632]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1631]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1632]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1633]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1631]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1634]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1633]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1635]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1634]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1636]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1636]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1637]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1635]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1638]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1637]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1639]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1638]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1640]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1640]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1641]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1639]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1641]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1642]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1643]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1642]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1644]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1643]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1645]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1644]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1646]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1645]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1647]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1647]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1648]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1646]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1649]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1649]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1650]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1648]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1651]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1651]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1652]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1650]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1653]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1653]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1654]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1652]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1655]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1654]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1656]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1655]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1657]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1656]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1658]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1658]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1659]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1659]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1660]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1657]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1661]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1660]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1662]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1662]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1663]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1661]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1663]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1664]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1665]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1665]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1666]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1664]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1667]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1666]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1668]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1668]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1669]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1667]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1669]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1670]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1671]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1670]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1672]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1671]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1673]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1672]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1674]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1674]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1675]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1673]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1675]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1677]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1676]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1677]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1678]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1676]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1679]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1678]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1679]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1680]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1681]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1680]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1681]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1682]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1683]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1682]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1684]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1683]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1685]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1685]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1686]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1684]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1687]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1686]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1688]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1688]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1689]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1687]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1690]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1689]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1691]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1691]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1692]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1690]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1693]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1692]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1694]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1694]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1695]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1693]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1696]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1695]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1697]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1697]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1698]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1696]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1699]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1698]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1700]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1699]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1701]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1700]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1702]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1701]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1703]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1702]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1704]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1704]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1705]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1703]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1706]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1705]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1707]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1707]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1708]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1706]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1709]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1709]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1710]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1708]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1711]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1710]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1712]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1711]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1713]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1712]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1714]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1713]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1715]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1715]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1716]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1714]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1717]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1717]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1718]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1716]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1719]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1718]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1720]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1719]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1721]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1720]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1722]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1721]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1723]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1723]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1724]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1722]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1725]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1724]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1726]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1726]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1727]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1725]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1728]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1727]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1729]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1729]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1730]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1728]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1731]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1730]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1732]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1732]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1733]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1731]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1734]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1733]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1735]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1734]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1736]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1736]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1737]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1735]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1738]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1737]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1739]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1739]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1740]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1738]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1741]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1741]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1742]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1740]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1743]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1743]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1742]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1744]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1745]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1744]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1746]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1746]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1747]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1745]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1748]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1747]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1749]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1748]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1750]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1750]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1751]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1749]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1752]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1751]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1753]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1753]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1754]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1752]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1755]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1755]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1756]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1756]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1757]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1757]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1758]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1758]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1759]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1759]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1760]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1754]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1761]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1760]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1762]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1761]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1763]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1762]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1764]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1763]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1765]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1764]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1766]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1765]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1767]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1766]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1768]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1767]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1769]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1769]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1770]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1768]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1771]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1770]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1772]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1772]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1773]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1773]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1774]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1774]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1775]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1771]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1776]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1775]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1777]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1776]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1778]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1777]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1778]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1779]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1780]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1779]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1781]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1781]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1780]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1782]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1783]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1782]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1784]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1783]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1785]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1785]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1786]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1784]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1787]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1786]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1788]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1788]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1789]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1787]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1790]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1789]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1791]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1790]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1792]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1792]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1793]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1791]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1794]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1793]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1795]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1794]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1796]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1796]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1797]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1795]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1798]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1798]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1799]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1797]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1800]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1799]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1801]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1800]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1802]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1801]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1803]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1802]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1804]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1803]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1805]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1805]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1806]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1804]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1806]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1807]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1808]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1807]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1809]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1809]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1810]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1808]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1811]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1811]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1810]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1813]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1812]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1813]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1814]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1812]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1815]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1814]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1816]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1815]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1817]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1816]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1818]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1817]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1819]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1818]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1820]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1819]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1821]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1820]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1822]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1821]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1823]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1823]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1824]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1822]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1824]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1825]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1826]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1826]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1827]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1825]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1827]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1828]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1828]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1829]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1830]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1829]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1831]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1831]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1832]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1830]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1833]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1833]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1834]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1832]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1835]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1835]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1836]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1836]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1837]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1834]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1838]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1837]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1839]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1838]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1840]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1839]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1841]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1841]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1842]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1840]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1843]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1842]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1844]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1843]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1844]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1845]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1845]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1846]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1846]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1847]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1847]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1848]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1848]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1849]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1849]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1850]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1850]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1851]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1851]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1852]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1852]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1853]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1853]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1854]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1854]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1855]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1856]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1855]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1856]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1858]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1857]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1858]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1859]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1857]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1859]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1860]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1861]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1860]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1862]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1861]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1863]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1863]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1864]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1862]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1865]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1864]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1866]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1865]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1867]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1867]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1868]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1866]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1869]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1868]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1870]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1869]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1871]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1871]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1872]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1870]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1873]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1872]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1874]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1874]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1875]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1873]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1875]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1876]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1876]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1877]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1878]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1877]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1879]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1878]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1879]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1881]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1880]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1881]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1880]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1882]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1883]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1882]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1884]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1883]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1885]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1885]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1886]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1884]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1887]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1886]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1888]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1887]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1889]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1888]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1890]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1889]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1891]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1890]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1892]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1892]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1893]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1891]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1894]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1893]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1895]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1894]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1896]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1895]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1897]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1896]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1898]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1897]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1899]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1898]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1900]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1899]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1901]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1900]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1902]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1901]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1903]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1902]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1904]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1903]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1905]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1905]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1906]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1904]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1907]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1906]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1908]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1907]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1909]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1908]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1910]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1910]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1911]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1909]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1912]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1911]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1913]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1913]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1914]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1912]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1915]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1914]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1916]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1916]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1917]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1915]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1918]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1917]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1919]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1919]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1920]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1918]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1921]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1921]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1922]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1920]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1923]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1923]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1924]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1922]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1925]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1925]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1924]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1926]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1927]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1926]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1928]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1927]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1929]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1928]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1930]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1929]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1931]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1930]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1932]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1932]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1933]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1931]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1934]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1934]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1935]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1933]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1936]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1936]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1937]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1935]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1938]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1937]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1939]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1938]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1940]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1939]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1941]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1940]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1942]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1942]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1943]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1941]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1944]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1944]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1945]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1943]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1946]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1946]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1945]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1948]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1947]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1948]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1949]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1947]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1950]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1949]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1951]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1950]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1952]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1952]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1953]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1951]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1954]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1953]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1955]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1955]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1956]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1954]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1957]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1956]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1958]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1958]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1959]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1957]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1959]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1961]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1960]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1961]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1962]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1960]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1963]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1962]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1964]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1963]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1965]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1965]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1966]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1964]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1967]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1966]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1968]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1968]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1969]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1967]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1970]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1969]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1971]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1971]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1972]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1970]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1973]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1973]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1974]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1972]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1975]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1975]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1974]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1977]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1976]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1977]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1978]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1976]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1979]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1978]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1980]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1979]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1981]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1980]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1982]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1981]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1983]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1983]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1984]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1982]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1985]]} + {:process 0 :type :fail :f :txn :value [[:append 3 1984]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1986]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1986]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1987]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1985]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1988]]} + {:process 0 :type :fail :f :txn :value [[:append 0 1987]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1989]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1989]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1990]]} + {:process 0 :type :fail :f :txn :value [[:append 5 1990]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1991]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1988]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1991]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1992]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1993]]} + {:process 0 :type :fail :f :txn :value [[:append 2 1992]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1994]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1994]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1995]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1993]]} + {:process 0 :type :fail :f :txn :value [[:append 7 1995]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1996]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1997]]} + {:process 0 :type :fail :f :txn :value [[:append 6 1996]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1997]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1998]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1998]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2000]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1999]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2000]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2001]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1999]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2002]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2001]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2003]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2002]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2004]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2004]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2005]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2003]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2006]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2005]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2007]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2006]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2008]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2007]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2009]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2009]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2010]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2008]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2011]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2010]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2012]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2012]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2013]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2011]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2014]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2013]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2015]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2014]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2016]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2016]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2017]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2015]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2018]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2017]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2019]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2019]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2020]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2018]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2021]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2021]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2022]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2020]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2023]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2022]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2023]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2025]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2024]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2025]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2026]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2024]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2027]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2027]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2028]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2026]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2029]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2028]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2030]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2029]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2031]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2031]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2032]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2030]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2033]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2032]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2034]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2034]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2035]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2033]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2036]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2035]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2037]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2036]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2038]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2038]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2039]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2037]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2040]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2039]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2041]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2041]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2042]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2040]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2042]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2043]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2043]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2044]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2045]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2044]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2045]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2046]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2047]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2046]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2048]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2047]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2049]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2048]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2050]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2050]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2051]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2049]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2051]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2052]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2053]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2053]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2054]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2054]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2055]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2052]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2055]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2056]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2057]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2056]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2058]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2057]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2059]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2058]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2060]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2060]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2061]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2059]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2062]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2061]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2063]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2062]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2063]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2065]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2064]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2065]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2066]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2064]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2067]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2066]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2068]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2067]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2069]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2068]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2070]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2070]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2071]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2069]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2072]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2071]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2073]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2073]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2074]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2072]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2075]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2074]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2076]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2075]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2077]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2076]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2078]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2077]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2079]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2079]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2080]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2078]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2081]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2080]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2082]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2082]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2083]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2081]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2083]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2084]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2085]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2084]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2085]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2086]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2087]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2086]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2088]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2087]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2089]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2089]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2090]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2088]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2091]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2091]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2092]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2090]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2093]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2092]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2094]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2094]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2095]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2093]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2096]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2095]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2097]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2096]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2098]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2098]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2099]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2097]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2100]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2099]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2101]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2101]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2102]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2100]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2103]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2102]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2104]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2104]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2105]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2103]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2106]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2105]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2107]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2106]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2108]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2108]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2107]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2110]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2109]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2110]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2111]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2109]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2112]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2112]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2113]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2111]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2113]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2114]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2115]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2114]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2116]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2115]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2117]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2117]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2116]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2118]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2119]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2118]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2120]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2119]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2120]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2122]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2121]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2122]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2123]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2121]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2124]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2123]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2125]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2125]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2126]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2124]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2127]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2126]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2128]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2128]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2129]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2129]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2130]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2127]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2131]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2130]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2131]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2132]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2132]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2133]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2134]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2133]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2135]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2134]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2136]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2136]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2135]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2137]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2137]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2138]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2138]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2139]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2139]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2140]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2140]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2141]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2141]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2142]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2142]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2143]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2143]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2144]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2144]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2145]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2145]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2146]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2146]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2147]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2147]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2148]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2149]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2148]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2150]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2149]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2151]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2151]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2152]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2150]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2153]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2152]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2153]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2154]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2155]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2154]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2156]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2156]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2157]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2155]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2158]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2157]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2159]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2158]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2160]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2159]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2161]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2160]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2162]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2161]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2163]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2163]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2164]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2162]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2165]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2164]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2165]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2166]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2167]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2166]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2168]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2167]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2169]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2168]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2169]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2170]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2171]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2170]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2172]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2171]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2173]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2172]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2174]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2173]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2174]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2175]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2175]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2176]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2177]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2176]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2178]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2177]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2179]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2179]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2180]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2178]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2181]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2181]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2180]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2182]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2183]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2182]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2184]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2184]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2185]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2183]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2186]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2186]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2187]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2185]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2188]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2187]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2189]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2189]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2190]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2188]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2191]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2191]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2192]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2190]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2193]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2193]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2194]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2192]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2195]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2195]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2196]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2194]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2197]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2196]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2197]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2199]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2198]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2199]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2200]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2198]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2201]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2200]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2202]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2201]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2203]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2203]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2204]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2202]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2205]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2204]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2206]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2206]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2207]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2205]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2208]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2207]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2209]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2208]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2210]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2210]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2211]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2209]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2212]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2211]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2213]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2212]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2214]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2213]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2215]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2214]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2216]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2215]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2217]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2216]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2218]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2217]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2219]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2218]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2219]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2220]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2220]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2221]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2221]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2222]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2223]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2222]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2223]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2224]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2225]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2224]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2226]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2225]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2227]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2227]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2228]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2228]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2229]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2229]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2230]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2230]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2231]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2231]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2232]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2232]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2233]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2226]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2234]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2234]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2235]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2235]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2236]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2233]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2237]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2236]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2238]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2238]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2239]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2237]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2240]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2239]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2241]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2241]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2242]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2240]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2243]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2242]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2244]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2244]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2245]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2243]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2246]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2245]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2247]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2247]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2248]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2246]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2249]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2248]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2250]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2249]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2251]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2250]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2252]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2251]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2253]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2252]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2253]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2254]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2254]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2255]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2256]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2255]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2257]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2256]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2257]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2259]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2258]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2259]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2260]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2258]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2261]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2260]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2262]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2261]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2263]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2263]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2264]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2262]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2265]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2264]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2266]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2266]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2267]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2265]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2268]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2267]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2269]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2268]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2270]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2269]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2271]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2270]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2272]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2271]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2273]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2273]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2274]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2272]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2275]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2274]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2276]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2276]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2277]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2275]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2278]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2277]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2279]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2278]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2280]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2279]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2280]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2281]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2282]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2282]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2283]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2283]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2284]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2281]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2284]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2285]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2285]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2286]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2287]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2286]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2288]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2287]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2289]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2288]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2290]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2290]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2291]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2289]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2291]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2292]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2293]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2292]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2294]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2293]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2295]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2295]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2296]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2294]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2297]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2296]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2298]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2297]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2299]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2298]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2300]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2299]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2301]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2300]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2302]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2301]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2303]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2303]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2304]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2302]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2305]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2304]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2306]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2306]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2307]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2305]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2307]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2308]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2309]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2308]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2310]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2309]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2311]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2310]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2312]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2311]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2313]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2313]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2314]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2312]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2315]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2314]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2315]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2316]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2316]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2317]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2318]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2318]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2319]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2317]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2320]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2319]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2321]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2321]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2322]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2322]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2323]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2323]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2324]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2320]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2325]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2325]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2326]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2324]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2327]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2326]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2328]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2328]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2329]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2327]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2330]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2329]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2331]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2330]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2332]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2332]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2333]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2331]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2334]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2333]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2335]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2335]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2334]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2336]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2337]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2336]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2338]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2337]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2338]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2339]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2340]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2339]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2341]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2340]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2342]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2341]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2342]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2343]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2343]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2344]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2345]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2344]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2345]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2346]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2347]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2346]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2348]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2347]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2349]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2348]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2350]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2350]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2351]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2349]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2352]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2352]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2353]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2351]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2354]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2353]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2355]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2355]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2356]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2354]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2357]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2356]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2358]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2357]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2359]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2358]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2360]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2359]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2361]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2361]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2362]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2360]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2362]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2364]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2363]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2364]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2365]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2365]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2366]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2366]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2367]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2363]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2368]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2367]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2369]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2369]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2370]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2368]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2371]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2370]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2372]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2371]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2373]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2373]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2374]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2372]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2375]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2374]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2375]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2377]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2376]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2377]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2378]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2376]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2379]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2378]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2380]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2379]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2381]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2381]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2382]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2380]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2383]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2382]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2384]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2383]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2384]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2385]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2386]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2385]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2387]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2387]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2388]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2386]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2389]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2388]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2389]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2391]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2390]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2391]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2392]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2392]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2393]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2390]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2393]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2394]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2395]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2394]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2396]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2395]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2397]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2396]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2398]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2397]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2398]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2399]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2400]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2399]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2401]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2400]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2402]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2402]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2403]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2401]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2404]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2403]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2405]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2404]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2406]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2406]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2407]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2405]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2408]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2407]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2409]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2408]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2410]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2410]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2409]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2411]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2412]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2411]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2413]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2412]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2414]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2413]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2415]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2415]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2416]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2414]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2416]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2417]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2418]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2417]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2419]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2418]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2420]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2420]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2421]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2421]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2422]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2422]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2423]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2423]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2424]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2424]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2425]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2425]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2426]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2426]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2427]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2427]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2428]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2428]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2429]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2429]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2430]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2430]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2431]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2431]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2432]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2432]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2433]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2419]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2433]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2434]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2435]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2434]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2436]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2436]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2437]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2435]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2438]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2438]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2439]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2437]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2440]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2439]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2441]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2440]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2442]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2441]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2442]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2443]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2444]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2443]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2445]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2444]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2446]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2446]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2447]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2445]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2448]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2447]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2449]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2448]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2450]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2449]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2451]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2450]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2452]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2451]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2453]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2452]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2454]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2453]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2455]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2455]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2456]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2454]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2457]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2456]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2458]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2458]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2459]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2457]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2460]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2459]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2461]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2460]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2462]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2462]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2461]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2463]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2464]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2463]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2465]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2464]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2466]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2465]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2467]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2466]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2468]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2467]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2469]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2468]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2470]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2469]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2471]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2470]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2471]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2473]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2472]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2473]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2474]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2472]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2475]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2475]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2474]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2476]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2476]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2477]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2478]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2477]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2479]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2478]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2480]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2480]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2481]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2479]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2482]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2481]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2483]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2483]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2484]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2482]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2485]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2484]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2486]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2486]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2487]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2485]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2487]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2488]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2489]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2488]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2490]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2489]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2491]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2490]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2492]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2491]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2493]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2493]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2494]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2492]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2495]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2494]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2496]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2495]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2497]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2496]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2498]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2497]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2499]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2498]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2500]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2500]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2501]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2499]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2501]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2502]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2503]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2502]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2504]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2504]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2505]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2503]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2506]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2505]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2506]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2507]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2508]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2507]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2509]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2508]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2509]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2511]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2510]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2511]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2512]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2510]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2513]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2512]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2514]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2513]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2515]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2515]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2516]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2514]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2517]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2516]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2517]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2519]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2518]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2519]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2520]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2520]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2521]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2518]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2522]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2521]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2522]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2523]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2524]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2523]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2525]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2524]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2526]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2525]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2526]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2528]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2527]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2528]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2529]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2527]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2530]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2529]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2531]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2530]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2532]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2532]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2533]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2531]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2534]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2533]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2535]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2534]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2536]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2536]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2537]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2535]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2537]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2539]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2538]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2539]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2540]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2540]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2541]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2541]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2542]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2538]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2543]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2543]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2544]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2542]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2545]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2545]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2546]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2544]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2547]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2547]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2548]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2546]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2549]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2549]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2550]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2550]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2551]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2551]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2552]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2552]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2553]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2553]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2554]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2548]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2555]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2555]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2554]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2556]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2556]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2557]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2558]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2557]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2559]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2558]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2560]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2560]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2561]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2561]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2562]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2562]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2563]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2559]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2564]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2563]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2565]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2564]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2566]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2565]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2567]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2566]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2568]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2567]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2569]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2569]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2570]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2568]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2571]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2571]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2572]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2570]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2573]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2572]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2574]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2573]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2575]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2574]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2575]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2576]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2577]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2576]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2578]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2577]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2579]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2578]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2579]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2580]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2581]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2580]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2582]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2581]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2582]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2583]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2584]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2583]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2584]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2586]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2585]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2586]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2585]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2587]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2588]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2587]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2589]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2588]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2590]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2589]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2591]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2590]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2591]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2592]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2593]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2592]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2594]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2593]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2595]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2594]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2596]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2595]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2597]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2596]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2598]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2597]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2599]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2599]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2600]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2598]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2601]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2601]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2602]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2600]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2603]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2602]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2604]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2604]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2605]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2603]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2606]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2605]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2607]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2606]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2608]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2608]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2609]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2607]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2609]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2611]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2610]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2611]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2610]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2612]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2612]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2613]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2614]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2613]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2615]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2615]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2616]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2614]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2617]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2617]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2618]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2616]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2619]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2619]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2620]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2618]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2621]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2620]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2622]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2621]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2623]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2622]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2624]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2623]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2625]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2625]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2624]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2627]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2626]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2627]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2626]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2628]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2628]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2629]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2629]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2630]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2630]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2631]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2631]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2632]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2633]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2632]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2634]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2633]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2635]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2635]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2636]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2634]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2637]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2636]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2638]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2638]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2637]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2640]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2639]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2640]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2639]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2642]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2641]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2642]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2643]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2641]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2644]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2643]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2645]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2645]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2646]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2644]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2647]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2646]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2648]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2647]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2649]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2649]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2650]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2648]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2651]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2650]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2652]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2651]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2653]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2652]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2654]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2654]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2655]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2653]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2655]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2657]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2656]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2657]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2658]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2656]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 2659]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2658]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2660]]} + {:process 0 :type :fail :f :txn :value [[:append 6 2659]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2661]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2661]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 2662]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2660]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2663]]} + {:process 0 :type :fail :f :txn :value [[:append 3 2662]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2664]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2664]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 2665]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2663]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2666]]} + {:process 0 :type :fail :f :txn :value [[:append 0 2665]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 2667]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2666]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2668]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2668]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2669]]} + {:process 0 :type :fail :f :txn :value [[:append 7 2667]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 2670]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2669]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2671]]} + {:process 0 :type :fail :f :txn :value [[:append 5 2670]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 2672]]} + {:process 0 :type :fail :f :txn :value [[:append 4 2672]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 2673]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2671]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2674]]} + {:process 0 :type :fail :f :txn :value [[:append 2 2673]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 2675]]} + {:process 0 :type :fail :f :txn :value [[:append 1 2675]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2674]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2676]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2676]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2677]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2677]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2678]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2678]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2679]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2679]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2680]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2680]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2681]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2681]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2682]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2682]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2683]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2683]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2684]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2684]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2685]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2685]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2686]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2686]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2687]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2687]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2688]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2688]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2689]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2689]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2690]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2690]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2691]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2691]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2692]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2692]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2693]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2693]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2694]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2694]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2695]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2695]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2696]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2696]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2697]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2697]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2698]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2698]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2699]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2699]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2700]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2700]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2701]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2701]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2702]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2702]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2703]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2703]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2704]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2704]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2705]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2705]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2706]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2706]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2707]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2707]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2708]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2708]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2709]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2709]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2710]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2710]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2711]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2711]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2712]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2712]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2713]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2713]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2714]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2714]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2715]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2715]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2716]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2716]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2717]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2717]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2718]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2718]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2719]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2719]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2720]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2720]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2721]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2721]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2722]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2722]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2723]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2723]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2724]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2724]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2725]]} + {:process 2 :type :fail :f :txn :value [[:append 6 475]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 2726]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2725]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2727]]} + {:process 2 :type :fail :f :txn :value [[:append 1 2726]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 2728]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2727]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2729]]} + {:process 2 :type :fail :f :txn :value [[:append 3 2728]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 2730]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2729]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2731]]} + {:process 2 :type :fail :f :txn :value [[:append 2 2730]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 2732]]} + {:process 2 :type :fail :f :txn :value [[:append 4 2732]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 2733]]} + {:process 2 :type :fail :f :txn :value [[:append 7 2733]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 2734]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2731]]} + {:process 2 :type :fail :f :txn :value [[:append 1 2734]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 2735]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 2735]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 2736]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2737]]} + {:process 2 :type :fail :f :txn :value [[:append 2 2736]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 2738]]} + {:process 2 :type :fail :f :txn :value [[:append 5 2738]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2737]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2740]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2740]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2741]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 2739]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2741]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2742]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2742]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2743]]} + {:process 2 :type :fail :f :txn :value [[:append 7 2739]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 2744]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2743]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2745]]} + {:process 2 :type :fail :f :txn :value [[:append 6 2744]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 2746]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2745]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2747]]} + {:process 2 :type :fail :f :txn :value [[:append 0 2746]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 2748]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2747]]} + {:process 2 :type :fail :f :txn :value [[:append 3 2748]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2749]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 2750]]} + {:process 2 :type :fail :f :txn :value [[:append 5 2750]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 2751]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2749]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2752]]} + {:process 2 :type :fail :f :txn :value [[:append 4 2751]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 2753]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2752]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2754]]} + {:process 2 :type :fail :f :txn :value [[:append 6 2753]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2754]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 2755]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2756]]} + {:process 2 :type :fail :f :txn :value [[:append 1 2755]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 2757]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2756]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2758]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2758]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2759]]} + {:process 2 :type :fail :f :txn :value [[:append 3 2757]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 2760]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2759]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2761]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2761]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 2760]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 2762]]} + {:process 2 :type :fail :f :txn :value [[:append 4 2762]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 2763]]} + {:process 2 :type :fail :f :txn :value [[:append 7 2763]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 2764]]} + {:process 2 :type :fail :f :txn :value [[:append 1 2764]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 2765]]} + {:process 2 :type :fail :f :txn :value [[:append 0 2765]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 2766]]} + {:process 2 :type :fail :f :txn :value [[:append 2 2766]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 2767]]} + {:process 2 :type :fail :f :txn :value [[:append 5 2767]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 2768]]} + {:process 2 :type :fail :f :txn :value [[:append 7 2768]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 2769]]} + {:process 2 :type :fail :f :txn :value [[:append 6 2769]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 2770]]} + {:process 2 :type :fail :f :txn :value [[:append 0 2770]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 2771]]} + {:process 2 :type :fail :f :txn :value [[:append 3 2771]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 2772]]} + {:process 2 :type :fail :f :txn :value [[:append 5 2772]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 2773]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2774]]} + {:process 2 :type :fail :f :txn :value [[:append 4 2773]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 2775]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2774]]} + {:process 2 :type :fail :f :txn :value [[:append 6 2775]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 2776]]} + {:process 2 :type :fail :f :txn :value [[:append 1 2776]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 2777]]} + {:process 2 :type :fail :f :txn :value [[:append 3 2777]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 2778]]} + {:process 2 :type :fail :f :txn :value [[:append 2 2778]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 2779]]} + {:process 2 :type :fail :f :txn :value [[:append 4 2779]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 2780]]} + {:process 2 :type :fail :f :txn :value [[:append 7 2780]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 2781]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2782]]} + {:process 2 :type :fail :f :txn :value [[:append 1 2781]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 2783]]} + {:process 2 :type :fail :f :txn :value [[:append 0 2783]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 2784]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2782]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2785]]} + {:process 2 :type :fail :f :txn :value [[:append 2 2784]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 2786]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2785]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2787]]} + {:process 2 :type :fail :f :txn :value [[:append 5 2786]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 2788]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2787]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2789]]} + {:process 2 :type :fail :f :txn :value [[:append 7 2788]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 2790]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2789]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2791]]} + {:process 2 :type :fail :f :txn :value [[:append 6 2790]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2791]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 2792]]} + {:process 2 :type :fail :f :txn :value [[:append 0 2792]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 2793]]} + {:process 2 :type :fail :f :txn :value [[:append 3 2793]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 2794]]} + {:process 2 :type :fail :f :txn :value [[:append 5 2794]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 2795]]} + {:process 2 :type :fail :f :txn :value [[:append 4 2795]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 2796]]} + {:process 2 :type :fail :f :txn :value [[:append 6 2796]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 2797]]} + {:process 2 :type :fail :f :txn :value [[:append 1 2797]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 2798]]} + {:process 2 :type :fail :f :txn :value [[:append 3 2798]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 2799]]} + {:process 2 :type :fail :f :txn :value [[:append 2 2799]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 2800]]} + {:process 2 :type :fail :f :txn :value [[:append 4 2800]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 2801]]} + {:process 2 :type :fail :f :txn :value [[:append 7 2801]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 2802]]} + {:process 2 :type :fail :f :txn :value [[:append 1 2802]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 2803]]} + {:process 2 :type :fail :f :txn :value [[:append 0 2803]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 2804]]} + {:process 2 :type :fail :f :txn :value [[:append 2 2804]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 2805]]} + {:process 2 :type :fail :f :txn :value [[:append 5 2805]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 2806]]} + {:process 2 :type :fail :f :txn :value [[:append 7 2806]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 2807]]} + {:process 2 :type :fail :f :txn :value [[:append 6 2807]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 2808]]} + {:process 2 :type :fail :f :txn :value [[:append 0 2808]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 2809]]} + {:process 2 :type :fail :f :txn :value [[:append 3 2809]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 2810]]} + {:process 2 :type :fail :f :txn :value [[:append 5 2810]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 2811]]} + {:process 2 :type :fail :f :txn :value [[:append 4 2811]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 2812]]} + {:process 2 :type :fail :f :txn :value [[:append 6 2812]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 2813]]} + {:process 2 :type :fail :f :txn :value [[:append 1 2813]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 2814]]} + {:process 2 :type :fail :f :txn :value [[:append 3 2814]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 2815]]} + {:process 2 :type :fail :f :txn :value [[:append 2 2815]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 2816]]} + {:process 2 :type :fail :f :txn :value [[:append 4 2816]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 2817]]} + {:process 2 :type :fail :f :txn :value [[:append 7 2817]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 2818]]} + {:process 2 :type :fail :f :txn :value [[:append 1 2818]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 2819]]} + {:process 2 :type :fail :f :txn :value [[:append 0 2819]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 2820]]} + {:process 2 :type :fail :f :txn :value [[:append 2 2820]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 2821]]} + {:process 2 :type :fail :f :txn :value [[:append 5 2821]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 2822]]} + {:process 2 :type :fail :f :txn :value [[:append 7 2822]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 2823]]} + {:process 2 :type :fail :f :txn :value [[:append 6 2823]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 2824]]} + {:process 2 :type :fail :f :txn :value [[:append 0 2824]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 2825]]} + {:process 2 :type :fail :f :txn :value [[:append 3 2825]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 2826]]} + {:process 2 :type :fail :f :txn :value [[:append 5 2826]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 2827]]} + {:process 2 :type :fail :f :txn :value [[:append 4 2827]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 2828]]} + {:process 2 :type :fail :f :txn :value [[:append 6 2828]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 2829]]} + {:process 2 :type :fail :f :txn :value [[:append 1 2829]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 2830]]} + {:process 2 :type :fail :f :txn :value [[:append 3 2830]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 2831]]} + {:process 2 :type :fail :f :txn :value [[:append 2 2831]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 2832]]} + {:process 2 :type :fail :f :txn :value [[:append 4 2832]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 2833]]} + {:process 2 :type :fail :f :txn :value [[:append 7 2833]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 2834]]} + {:process 2 :type :fail :f :txn :value [[:append 1 2834]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 2835]]} + {:process 2 :type :fail :f :txn :value [[:append 0 2835]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 2836]]} + {:process 2 :type :fail :f :txn :value [[:append 2 2836]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 2837]]} + {:process 2 :type :fail :f :txn :value [[:append 5 2837]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 2838]]} + {:process 2 :type :fail :f :txn :value [[:append 7 2838]]} + {:process 4 :type :fail :f :txn :value [[:append 3 476]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2840]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2840]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2841]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2841]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2842]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2842]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2843]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2843]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2844]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2844]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2845]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2845]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2846]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2846]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2847]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2847]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2848]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2848]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2849]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2849]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2850]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2850]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2851]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2851]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2852]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2852]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2853]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2853]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2854]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2854]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2855]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2855]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2856]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2856]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2857]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2857]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2858]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2858]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2859]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2859]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2860]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2860]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2861]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 2839]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2861]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2862]]} + {:process 2 :type :fail :f :txn :value [[:append 6 2839]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 2863]]} + {:process 2 :type :fail :f :txn :value [[:append 0 2863]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 2864]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2862]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2865]]} + {:process 2 :type :fail :f :txn :value [[:append 3 2864]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 2866]]} + {:process 2 :type :fail :f :txn :value [[:append 5 2866]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 2867]]} + {:process 2 :type :fail :f :txn :value [[:append 4 2867]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 2868]]} + {:process 2 :type :fail :f :txn :value [[:append 6 2868]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 2869]]} + {:process 2 :type :fail :f :txn :value [[:append 1 2869]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 2870]]} + {:process 2 :type :fail :f :txn :value [[:append 3 2870]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 2871]]} + {:process 2 :type :fail :f :txn :value [[:append 2 2871]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 2872]]} + {:process 2 :type :fail :f :txn :value [[:append 4 2872]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 2873]]} + {:process 2 :type :fail :f :txn :value [[:append 7 2873]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 2874]]} + {:process 2 :type :fail :f :txn :value [[:append 1 2874]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 2875]]} + {:process 2 :type :fail :f :txn :value [[:append 0 2875]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 2876]]} + {:process 2 :type :fail :f :txn :value [[:append 2 2876]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 2877]]} + {:process 2 :type :fail :f :txn :value [[:append 5 2877]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 2878]]} + {:process 2 :type :fail :f :txn :value [[:append 7 2878]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 2879]]} + {:process 2 :type :fail :f :txn :value [[:append 6 2879]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 2880]]} + {:process 2 :type :fail :f :txn :value [[:append 0 2880]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 2881]]} + {:process 2 :type :fail :f :txn :value [[:append 3 2881]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 2882]]} + {:process 2 :type :fail :f :txn :value [[:append 5 2882]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 2883]]} + {:process 2 :type :fail :f :txn :value [[:append 4 2883]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 2884]]} + {:process 2 :type :fail :f :txn :value [[:append 6 2884]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 2885]]} + {:process 2 :type :fail :f :txn :value [[:append 1 2885]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 2886]]} + {:process 2 :type :fail :f :txn :value [[:append 3 2886]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 2887]]} + {:process 2 :type :fail :f :txn :value [[:append 2 2887]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 2888]]} + {:process 2 :type :fail :f :txn :value [[:append 4 2888]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 2889]]} + {:process 2 :type :fail :f :txn :value [[:append 7 2889]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 2890]]} + {:process 2 :type :fail :f :txn :value [[:append 1 2890]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 2891]]} + {:process 2 :type :fail :f :txn :value [[:append 0 2891]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 2892]]} + {:process 2 :type :fail :f :txn :value [[:append 2 2892]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 2893]]} + {:process 2 :type :fail :f :txn :value [[:append 5 2893]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 2894]]} + {:process 2 :type :fail :f :txn :value [[:append 7 2894]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 2895]]} + {:process 2 :type :fail :f :txn :value [[:append 6 2895]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 2896]]} + {:process 2 :type :fail :f :txn :value [[:append 0 2896]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 2897]]} + {:process 2 :type :fail :f :txn :value [[:append 3 2897]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 2898]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2865]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2899]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2899]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2900]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2900]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2901]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2901]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2902]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2902]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2903]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2903]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2904]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2904]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2905]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2905]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2906]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2906]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2907]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2907]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2908]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2908]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2909]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2909]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2910]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2910]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2911]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2911]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2912]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2912]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2913]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2913]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2914]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2914]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2915]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2915]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2916]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2916]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2917]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2917]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2918]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2918]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2919]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2919]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2920]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2920]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2921]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2921]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2922]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2922]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2923]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2923]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2924]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2924]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2925]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2925]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2926]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2926]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2927]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2927]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2928]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2928]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2929]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2929]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2930]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2930]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2931]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2931]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2932]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2932]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2933]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2933]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2934]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2934]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2935]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2935]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2936]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2936]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2937]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2937]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2938]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2938]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2939]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2939]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2940]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2940]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2941]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2941]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2942]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2942]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2943]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2943]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2944]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2944]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2945]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2945]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2946]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2946]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2947]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2947]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2948]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2948]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2949]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2949]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2950]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2950]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2951]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2951]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2952]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2952]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2953]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2953]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2954]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2954]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2955]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2955]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2956]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2956]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2957]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2957]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2958]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2958]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2959]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2959]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2960]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2960]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2961]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2961]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2962]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2962]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2963]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2963]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2964]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2964]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2965]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2965]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2966]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2966]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2967]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2967]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2968]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2968]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2969]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2969]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2970]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2970]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2971]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2971]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2972]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2972]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2973]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2973]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2974]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2974]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2975]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2975]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2976]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2976]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2977]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2977]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2978]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2978]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2979]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2979]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2980]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2980]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2981]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2981]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2982]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2982]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2983]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2983]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2984]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2984]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2985]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2985]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2986]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2986]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2987]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2987]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2988]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2988]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2989]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2989]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2990]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2990]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2991]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2991]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2992]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2992]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2993]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2993]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2994]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2994]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2995]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2995]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2996]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2996]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2997]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2997]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2998]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2998]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2999]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2999]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3000]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3000]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3001]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3001]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3002]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3002]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3003]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3003]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3004]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3004]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3005]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3005]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3006]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3006]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3007]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3007]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3008]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3008]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3009]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3009]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3010]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3010]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3011]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3011]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3012]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3012]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3013]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3013]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3014]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3014]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3015]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3015]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3016]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3016]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3017]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3017]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3018]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3018]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3019]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3019]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3020]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3020]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3021]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3021]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3022]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3022]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3023]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3023]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3024]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3024]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3025]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3025]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3026]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3026]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3027]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3027]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3028]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3028]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3029]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3029]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3030]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3030]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3031]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3031]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3032]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3032]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3033]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3033]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3034]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3034]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3035]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3035]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3036]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3036]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3037]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3037]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3038]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3038]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3039]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3039]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3040]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3040]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3041]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3041]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3042]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3042]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3043]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3043]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3044]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3044]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3045]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3045]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3046]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3046]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3047]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3047]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3048]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3048]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3049]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3049]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3050]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3050]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3051]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3051]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3052]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3052]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3053]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3053]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3054]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3054]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3055]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3055]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3056]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3056]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3057]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3057]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3058]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3058]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3059]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3059]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3060]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3060]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3061]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3061]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3062]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3062]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3063]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3063]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3064]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3064]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3065]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3065]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3066]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3066]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3067]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3067]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3068]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3068]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3069]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3069]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3070]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3070]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3071]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3071]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3072]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3072]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3073]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3073]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3074]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3074]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3075]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3075]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3076]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3076]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3077]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3077]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3078]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3078]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3079]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3079]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3080]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3080]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3081]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3081]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3082]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3082]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3083]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3083]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3084]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3084]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3085]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3085]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3086]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3086]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3087]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3087]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3088]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3088]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3089]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3089]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3090]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3090]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3091]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3091]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3092]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3092]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3093]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3093]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3094]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3094]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3095]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3095]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3096]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3096]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3097]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3097]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3098]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3098]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3099]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3099]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3100]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3100]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3101]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3101]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3102]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3102]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3103]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3103]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3104]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3104]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3105]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3105]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3106]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3106]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3107]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3107]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3108]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3108]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3109]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3109]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3110]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3110]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3111]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3111]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3112]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3112]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3113]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3113]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3114]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3114]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3115]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3115]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3116]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3116]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3117]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3117]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3118]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3118]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3119]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3119]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3120]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3120]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3121]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3121]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3122]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3122]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3123]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3123]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3124]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3124]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3125]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3125]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3126]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3126]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3127]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3127]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3128]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3128]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3129]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3129]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3130]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3130]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3131]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3131]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3132]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3132]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3133]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3133]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3134]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3134]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3135]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3135]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3136]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3136]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3137]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3137]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3138]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3138]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3139]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3139]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3140]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3140]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3141]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3141]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3142]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3142]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3143]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3143]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3144]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3144]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3145]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3145]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3146]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3146]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3147]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3147]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3148]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3148]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3149]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3149]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3150]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3150]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3151]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3151]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3152]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3152]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3153]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3153]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3154]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3154]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3155]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3155]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3156]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3156]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3157]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3157]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3158]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3158]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3159]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3159]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3160]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3160]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3161]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3161]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3162]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3162]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3163]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3163]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3164]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3164]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3165]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3165]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3166]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3166]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3167]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3167]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3168]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3168]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3169]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3169]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3170]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3170]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3171]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3171]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3172]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3172]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3173]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3173]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3174]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3174]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3175]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3175]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3176]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3176]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3177]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3177]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3178]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3178]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3179]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3179]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3180]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3180]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3181]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3181]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3182]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3182]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3183]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3183]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3184]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3184]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3185]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3185]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3186]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3186]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3187]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3187]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3188]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3188]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3189]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3189]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3190]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3190]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3191]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3191]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3192]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3192]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3193]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3193]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3194]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3194]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3195]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3195]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3196]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3196]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3197]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3197]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3198]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3198]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3199]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3199]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3200]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3200]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3201]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3201]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3202]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3202]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3203]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3203]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3204]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3204]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3205]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3205]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3206]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3206]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3207]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3207]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3208]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3208]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3209]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3209]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3210]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3210]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3211]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3211]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3212]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3212]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3213]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3213]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3214]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3214]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3215]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3215]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3216]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3216]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3217]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3217]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3218]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3218]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3219]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3219]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3220]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3220]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3221]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3221]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3222]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3222]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3223]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3223]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3224]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3224]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3225]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3225]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3226]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3226]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3227]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3227]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3228]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3228]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3229]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3229]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3230]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3230]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3231]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3231]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3232]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3232]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3233]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3233]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3234]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3234]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3235]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3235]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3236]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3236]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3237]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3237]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3238]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3238]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3239]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3239]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3240]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3240]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3241]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3241]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3242]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3242]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3243]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3243]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3244]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3244]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3245]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3245]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3246]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3246]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3247]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3247]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3248]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3248]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3249]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3249]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3250]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3250]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3251]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3251]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3252]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3252]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3253]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3253]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3254]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3254]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3255]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3255]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3256]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3256]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3257]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3257]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3258]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3258]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3259]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3259]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3260]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3260]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3261]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3261]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3262]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3262]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3263]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3263]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3264]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3264]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3265]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3265]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3266]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3266]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3267]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3267]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3268]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3268]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3269]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3269]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3270]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3270]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3271]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3271]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3272]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3272]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3273]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3273]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3274]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3274]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3275]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3275]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3276]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3276]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3277]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3277]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3278]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3278]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3279]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3279]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3280]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3280]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3281]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3281]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3282]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3282]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3283]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3283]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3284]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3284]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3285]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3285]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3286]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3286]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3287]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3287]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3288]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3288]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3289]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3289]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3290]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3290]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3291]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3291]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3292]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3292]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3293]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3293]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3294]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3294]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3295]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3295]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3296]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3296]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3297]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3297]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3298]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3298]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3299]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3299]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3300]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3300]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3301]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3301]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3302]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3302]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3303]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3303]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3304]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3304]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3305]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3305]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3306]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3306]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3307]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3307]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3308]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3308]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3309]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3309]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3310]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3310]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3311]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3311]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3312]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3312]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3313]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3313]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3314]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3314]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3315]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3315]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3316]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3316]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3317]]} + {:process 2 :type :fail :f :txn :value [[:append 5 2898]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3318]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3318]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3319]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3319]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3320]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3320]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3321]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3321]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3322]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3322]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3323]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3323]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3324]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3324]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3325]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3325]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3326]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3326]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3327]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3327]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3328]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3328]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3329]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3329]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3330]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3330]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3331]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3331]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3332]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3332]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3333]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3333]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3334]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3334]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3335]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3335]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3336]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3336]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3337]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3337]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3338]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3338]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3339]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3339]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3340]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3340]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3341]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3341]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3342]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3342]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3343]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3343]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3344]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3344]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3345]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3345]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3346]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3346]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3347]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3347]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3348]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3348]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3349]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3349]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3350]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3350]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3351]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3351]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3352]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3352]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3353]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3353]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3354]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3354]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3355]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3355]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3356]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3356]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3357]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3357]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3358]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3358]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3359]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3359]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3360]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3360]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3361]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3361]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3362]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3362]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3363]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3363]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3364]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3364]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3365]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3365]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3366]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3366]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3367]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3367]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3368]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3368]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3369]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3369]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3370]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3370]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3371]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3371]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3372]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3372]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3373]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3373]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3374]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3374]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3375]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3375]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3376]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3376]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3377]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3377]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3378]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3378]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3379]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3379]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3380]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3380]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3381]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3381]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3382]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3382]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3383]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3383]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3384]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3384]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3385]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3385]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3386]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3386]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3387]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3387]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3388]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3388]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3389]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3389]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3390]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3390]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3391]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3391]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3392]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3392]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3393]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3393]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3394]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3394]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3395]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3395]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3396]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3396]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3397]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3397]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3398]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3398]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3399]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3399]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3400]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3400]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3401]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3401]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3402]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3402]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3403]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3403]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3404]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3404]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3405]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3405]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3406]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3406]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3407]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3407]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3408]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3408]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3409]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3409]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3410]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3410]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3411]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3411]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3412]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3412]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3413]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3413]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3414]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3414]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3415]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3415]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3416]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3416]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3417]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3417]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3418]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3418]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3419]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3419]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3420]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3420]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3421]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3421]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3422]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3422]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3423]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3423]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3424]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3424]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3425]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3425]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3426]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3426]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3427]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3427]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3428]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3428]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3429]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3429]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3430]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3430]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3431]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3431]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3432]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3432]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3433]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3433]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3434]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3434]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3435]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3435]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3436]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3436]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3437]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3437]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3438]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3438]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3439]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3439]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3440]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3440]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3441]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3441]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3442]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3442]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3443]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3443]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3444]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3444]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3445]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3445]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3446]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3446]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3447]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3447]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3448]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3448]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3449]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3449]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3450]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3450]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3451]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3451]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3452]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3452]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3453]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3453]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3454]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3454]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3455]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3455]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3456]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3456]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3457]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3457]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3458]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3458]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3459]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3459]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3460]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3460]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3461]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3461]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3462]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3462]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3463]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3463]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3464]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3464]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3465]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3465]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3466]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3466]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3467]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3467]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3468]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3468]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3469]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3469]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3470]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3470]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3471]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3471]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3472]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3472]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3473]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3473]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3474]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3474]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3475]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3475]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3476]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3476]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3477]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3477]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3478]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3478]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3479]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3479]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3480]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3480]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3481]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3481]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3482]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3482]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3483]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3483]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3484]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3484]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3485]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3485]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3486]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3486]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3487]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3487]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3488]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3488]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3489]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3489]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3490]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3490]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3491]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3491]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3492]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3492]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3493]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3493]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3494]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3494]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3495]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3495]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3496]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3496]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3497]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3497]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3498]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3498]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3499]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3499]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3500]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3500]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3501]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3501]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3502]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3502]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3503]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3503]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3504]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3504]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3505]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3505]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3506]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3506]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3507]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3507]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3508]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3508]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3509]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3509]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3510]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3510]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3511]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3511]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3512]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3512]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3513]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3513]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3514]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3514]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3515]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3515]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3516]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3516]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3517]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3517]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3518]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3518]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3519]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3519]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3520]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3520]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3521]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3521]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3522]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3522]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3523]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3523]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3524]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3524]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3525]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3525]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3526]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3526]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3527]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3527]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3528]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3528]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3529]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3529]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3530]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3530]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3531]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3531]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3532]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3532]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3533]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3533]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3534]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3534]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3535]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3535]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3536]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3536]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3537]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3537]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3538]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3538]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3539]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3539]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3540]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3540]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3541]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3541]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3542]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3542]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3543]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3543]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3544]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3544]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3545]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3545]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3546]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3546]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3547]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3547]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3548]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3548]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3549]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3549]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3550]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3550]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3551]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3551]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3552]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3552]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3553]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3553]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3554]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3554]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3555]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3555]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3556]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3556]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3557]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3557]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3558]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3558]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3559]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3559]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3560]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3560]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3561]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3561]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3562]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3562]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3563]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3563]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3564]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3564]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3565]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3565]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3566]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3566]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3567]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3567]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3568]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3568]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3569]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3569]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3570]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3570]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3571]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3571]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3572]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3572]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3573]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3573]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3574]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3574]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3575]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3575]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3576]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3576]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3577]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3577]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3578]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3578]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3579]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3579]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3580]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3580]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3581]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3581]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3582]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3582]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3583]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3583]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3584]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3584]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3585]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3585]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3586]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3586]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3587]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3587]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3588]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3588]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3589]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3589]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3590]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3590]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3591]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3591]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3592]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3592]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3593]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3593]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3594]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3594]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3595]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3595]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3596]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3596]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3597]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3597]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3598]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3598]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3599]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3599]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3600]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3600]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3601]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3601]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3602]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3602]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3603]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3603]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3604]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3604]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3605]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3605]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3606]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3606]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3607]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3607]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3608]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3608]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3609]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3609]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3610]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3610]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3611]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3611]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3612]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3612]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3613]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3613]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3614]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3614]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3615]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3615]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3616]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3616]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3617]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3617]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3618]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3618]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3619]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3619]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3620]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3620]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3621]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3621]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3622]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3622]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3623]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3623]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3624]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3624]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3625]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3625]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3626]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3626]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3627]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3627]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3628]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3628]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3629]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3629]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3630]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3630]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3631]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3631]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3632]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3632]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3633]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3633]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3634]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3634]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3635]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3635]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3636]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3636]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3637]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3637]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3638]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3638]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3639]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3639]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3640]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3640]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3641]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3641]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3642]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3642]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3643]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3643]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3644]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3644]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3645]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3645]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3646]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3646]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3647]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3647]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3648]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3648]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3649]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3649]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3650]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3650]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3651]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3651]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3652]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3652]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3653]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3653]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3654]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3654]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3655]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3655]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3656]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3656]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3657]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3657]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3658]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3658]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3659]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3659]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3660]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3660]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3661]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3661]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3662]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3662]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3663]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3663]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3664]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3664]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3665]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3665]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3666]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3666]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3667]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3667]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3668]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3668]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3669]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3669]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3670]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3670]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3671]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3671]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3672]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3672]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3673]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3673]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3674]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3674]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3675]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3675]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3676]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3676]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3677]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3677]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3678]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3678]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3679]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3679]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3680]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3680]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3681]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3681]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3682]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3682]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3683]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3683]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3684]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3684]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3685]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3685]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3686]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3686]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3687]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3687]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3688]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3688]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3689]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3689]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3690]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3690]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3691]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3691]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3692]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3692]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3693]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3693]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3694]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3694]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3695]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3695]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3696]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3696]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3697]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3697]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3698]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3698]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3699]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3699]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3700]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3700]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3701]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3701]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3702]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3702]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3703]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3703]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3704]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3704]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3705]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3705]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3706]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3706]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3707]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3707]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3708]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3708]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3709]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3709]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3710]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3710]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3711]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3711]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3712]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3712]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3713]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3713]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3714]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3714]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3715]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3715]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3716]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3716]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3717]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3717]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3718]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3718]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3719]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3719]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3720]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3720]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3721]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3721]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3722]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3722]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3723]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3723]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3724]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3724]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3725]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3725]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3726]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3726]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3727]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3727]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3728]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3728]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3729]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3729]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3730]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3730]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3731]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3731]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3732]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3732]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3733]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3733]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3734]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3734]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3735]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3735]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3736]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3736]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3737]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3737]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3738]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3738]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3739]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3739]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3740]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3740]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3741]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3741]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3742]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3742]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3743]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3743]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3744]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3744]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3745]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3745]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3746]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3746]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3747]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3747]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3748]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3748]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3749]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3749]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3750]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3750]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3751]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3751]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3752]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3752]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3753]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3753]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3754]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3754]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3755]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3755]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3756]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3756]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3757]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3757]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3758]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3758]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3759]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3759]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3760]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3760]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3761]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3761]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3762]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3762]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3763]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3763]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3764]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3764]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3765]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3765]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3766]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3766]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3767]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3767]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3768]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3768]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3769]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3769]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3770]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3770]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3771]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3771]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3772]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3772]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3773]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3773]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3774]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3774]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3775]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3775]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3776]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3776]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3777]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3777]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3778]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3778]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3779]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3779]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3780]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3780]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3781]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3781]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3782]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3782]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3783]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3783]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3784]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3784]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3785]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3785]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3786]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3786]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3787]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3787]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3788]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3788]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3789]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3789]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3790]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3790]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3791]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3791]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3792]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3792]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3793]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3793]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3794]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3794]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3795]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3795]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3796]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3796]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3797]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3797]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3798]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3798]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3799]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3799]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3800]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3800]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3801]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3801]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3802]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3802]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3803]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3803]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3804]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3804]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3805]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3805]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3806]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3806]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3807]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3807]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3808]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3808]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3809]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3809]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3810]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3810]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3811]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3811]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3812]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3812]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3813]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3813]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3814]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3814]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3815]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3815]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3816]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3816]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3817]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3817]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3818]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3818]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3819]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3819]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3820]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3820]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3821]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3821]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3822]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3822]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3823]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3823]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3824]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3824]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3825]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3825]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3826]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3826]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3827]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3827]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3828]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3828]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3829]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3829]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3830]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3830]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3831]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3831]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3832]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3832]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3833]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3833]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3834]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3834]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3835]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3835]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3836]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3836]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3837]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3837]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3838]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3838]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3839]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3839]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3840]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3840]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3841]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3841]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3842]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3842]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3843]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3843]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3844]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3844]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3845]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3845]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3846]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3846]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3847]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3847]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3848]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3848]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3849]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3849]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3850]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3850]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3851]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3851]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3852]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3852]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3853]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3853]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3854]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3854]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3855]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3855]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3856]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3856]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3857]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3857]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3858]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3858]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3859]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3859]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3860]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3860]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3861]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3861]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3862]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3862]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3863]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3863]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3864]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3864]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3865]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3865]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3866]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3866]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3867]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3867]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3868]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3868]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3869]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3869]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3870]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3870]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3871]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3871]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3872]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3872]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3873]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3873]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3874]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3874]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3875]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3875]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3876]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3876]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3877]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3877]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3878]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3878]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3879]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3879]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3880]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3880]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3881]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3881]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3882]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3882]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3883]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3883]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3884]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3884]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3885]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3885]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3886]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3886]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3887]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3887]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3888]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3888]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3889]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3889]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3890]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3890]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3891]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3891]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3892]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3892]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3893]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3893]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3894]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3894]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3895]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3895]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3896]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3896]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3897]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3897]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3898]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3898]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3899]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3899]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3900]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3900]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3901]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3901]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3902]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3902]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3903]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3903]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3904]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3904]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3905]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3905]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3906]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3906]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3907]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3907]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3908]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3908]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3909]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3909]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3910]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3910]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3911]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3911]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3912]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3912]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3913]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3913]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3914]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3914]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3915]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3915]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3916]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3916]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3917]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3917]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3918]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3918]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3919]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3919]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3920]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3920]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3921]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3921]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3922]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3922]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3923]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3923]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3924]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3924]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3925]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3925]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3926]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3926]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3927]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3927]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3928]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3928]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3929]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3929]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3930]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3930]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3931]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3931]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3932]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3932]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3933]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3933]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3934]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3934]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3935]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3935]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3936]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3936]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3937]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3937]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3938]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3938]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3939]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3939]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3940]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3940]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3941]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3941]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3942]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3942]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3943]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3943]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3944]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3944]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3945]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3945]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3946]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3946]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3947]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3947]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3948]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3948]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3949]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3949]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3950]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3950]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3951]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3951]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3952]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3952]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3953]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3953]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3954]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3954]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3955]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3955]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3956]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3956]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3957]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3957]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3958]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3958]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3959]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3959]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3960]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3960]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3961]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3961]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3962]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3962]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3963]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3963]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3964]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3964]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3965]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3965]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3966]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3966]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3967]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3967]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3968]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3968]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3969]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3969]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3970]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3970]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3971]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3971]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3972]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3972]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3973]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3973]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3974]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3974]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3975]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3975]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3976]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3976]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3977]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3977]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3978]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3978]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3979]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3979]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3980]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3980]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3981]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3981]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3982]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3982]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3983]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3983]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3984]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3984]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3985]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3985]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3986]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3986]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3987]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3987]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3988]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3988]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 3989]]} + {:process 2 :type :fail :f :txn :value [[:append 5 3989]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3990]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3990]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 3991]]} + {:process 2 :type :fail :f :txn :value [[:append 6 3991]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3992]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3992]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 3993]]} + {:process 2 :type :fail :f :txn :value [[:append 3 3993]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3994]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3994]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 3995]]} + {:process 2 :type :fail :f :txn :value [[:append 4 3995]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 3996]]} + {:process 2 :type :fail :f :txn :value [[:append 7 3996]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 3997]]} + {:process 2 :type :fail :f :txn :value [[:append 1 3997]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 3998]]} + {:process 2 :type :fail :f :txn :value [[:append 0 3998]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 3999]]} + {:process 2 :type :fail :f :txn :value [[:append 2 3999]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4000]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4000]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4001]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4001]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4002]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4002]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4003]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4003]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4004]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4004]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4005]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4005]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4006]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4006]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4007]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4007]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4008]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4008]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4009]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4009]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4010]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4010]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4011]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4011]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4012]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4012]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4013]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4013]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4014]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4014]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4015]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4015]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4016]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4016]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4017]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4017]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4018]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4018]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4019]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4019]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4020]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4020]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4021]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4021]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4022]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4022]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4023]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4023]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4024]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4024]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4025]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4025]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4026]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4026]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4027]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4027]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4028]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4028]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4029]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4029]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4030]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4030]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4031]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4031]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4032]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4032]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4033]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4033]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4034]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4034]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4035]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4035]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4036]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4036]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4037]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4037]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4038]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4038]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4039]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4039]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4040]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4040]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4041]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4041]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4042]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4042]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4043]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4043]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4044]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4044]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4045]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4045]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4046]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4046]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4047]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4047]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4048]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4048]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4049]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4049]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4050]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4050]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4051]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4051]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4052]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4052]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4053]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4053]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4054]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4054]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4055]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4055]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4056]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4056]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4057]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4057]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4058]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4058]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4059]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4059]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4060]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4060]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4061]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4061]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4062]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4062]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4063]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4063]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4064]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4064]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4065]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4065]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4066]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4066]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4067]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4067]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4068]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4068]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4069]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4069]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4070]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4070]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4071]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4071]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4072]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4072]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4073]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4073]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4074]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4074]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4075]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4075]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4076]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4076]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4077]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4077]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4078]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4078]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4079]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4079]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4080]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4080]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4081]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4081]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4082]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4082]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4083]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4083]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4084]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4084]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4085]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4085]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4086]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4086]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4087]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4087]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4088]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4088]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4089]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4089]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4090]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4090]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4091]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4091]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4092]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4092]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4093]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4093]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4094]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4094]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4095]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4095]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4096]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4096]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4097]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4097]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4098]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4098]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4099]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4099]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4100]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4100]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4101]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4101]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4102]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4102]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4103]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4103]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4104]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4104]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4105]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4105]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4106]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4106]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4107]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4107]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4108]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4108]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4109]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4109]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4110]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4110]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4111]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4111]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4112]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4112]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4113]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4113]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4114]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4114]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4115]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4115]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4116]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4116]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4117]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4117]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4118]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4118]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4119]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4119]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4120]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4120]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4121]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4121]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4122]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4122]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4123]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4123]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4124]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4124]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4125]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4125]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4126]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4126]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4127]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4127]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4128]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4128]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4129]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4129]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4130]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4130]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4131]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4131]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4132]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4132]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4133]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4133]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4134]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4134]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4135]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4135]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4136]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4136]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4137]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4137]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4138]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4138]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4139]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4139]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4140]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4140]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4141]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4141]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4142]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4142]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4143]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4143]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4144]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4144]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4145]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4145]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4146]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4146]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4147]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4147]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4148]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4148]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4149]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4149]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4150]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4150]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4151]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4151]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4152]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4152]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4153]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3317]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4154]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4153]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4155]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4154]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4156]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4156]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4157]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4155]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4157]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4158]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4159]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4158]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4160]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4159]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4161]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4161]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4162]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4160]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4163]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4163]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4164]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4162]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4165]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4165]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4166]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4164]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4167]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4167]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4168]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4166]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4169]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4169]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4170]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4168]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4171]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4171]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4172]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4170]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4173]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4172]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4174]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4174]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4175]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4173]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4175]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4176]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4177]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4177]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4178]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4176]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4179]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4178]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4180]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4179]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4181]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4180]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4182]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4182]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4183]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4183]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4184]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4184]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4185]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4181]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4186]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4185]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4187]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4186]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4188]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4187]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4189]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4189]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4190]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4188]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4191]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4190]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4192]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4192]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4193]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4191]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4194]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4193]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4195]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4195]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4196]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4194]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4196]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4197]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4197]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4198]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4199]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4198]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4200]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4199]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4201]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4201]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4202]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4200]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4203]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4203]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4204]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4202]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4205]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4205]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4206]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4204]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4207]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4206]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4207]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4208]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4209]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4208]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4210]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4209]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4211]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4210]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4212]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4211]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4213]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4213]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4214]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4212]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4215]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4214]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4216]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4215]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4217]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4216]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4218]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4217]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4219]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4219]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4220]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4220]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4221]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4218]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4222]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4222]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4223]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4221]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4224]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4223]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4225]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4225]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4226]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4224]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4227]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4227]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4228]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4226]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4229]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4228]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4230]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4230]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4229]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4231]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4232]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4231]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4233]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4232]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4234]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4234]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4235]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4233]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4236]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4235]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4237]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4236]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4238]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4238]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4239]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4237]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4240]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4239]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4241]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4241]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4242]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4240]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4242]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4243]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4244]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4243]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4245]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4244]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4245]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4246]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4247]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4246]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4248]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4247]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4249]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4248]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4250]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4250]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4251]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4249]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4252]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4251]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4253]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4253]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4254]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4252]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4255]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4254]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4256]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4256]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4257]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4255]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4257]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4258]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4258]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4259]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4260]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4259]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4260]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4261]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4262]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4261]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4263]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4262]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4263]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4264]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4264]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4265]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4266]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4265]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4267]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4267]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4268]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4266]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4269]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4269]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4270]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4268]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4271]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4270]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4272]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4271]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4272]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4273]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4274]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4273]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4275]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4275]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4276]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4274]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4277]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4276]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4278]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4278]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4279]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4277]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4280]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4279]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4281]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4281]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4282]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4280]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4283]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4282]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4284]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4283]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4285]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4284]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4286]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4285]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4287]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4287]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4288]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4286]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4289]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4288]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4289]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4291]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4290]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4291]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4292]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4290]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4293]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4292]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4294]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4294]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4295]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4293]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4296]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4296]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4297]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4295]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4298]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4297]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4299]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4299]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4300]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4298]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4301]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4300]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4302]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4302]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4303]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4301]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4304]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4304]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4305]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4305]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4306]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4303]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4307]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4306]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4308]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4307]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4309]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4308]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4310]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4310]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4311]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4309]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4312]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4312]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4313]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4311]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4314]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4313]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4315]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4314]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4316]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4316]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4317]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4315]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4318]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4317]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4319]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4318]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4320]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4319]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4321]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4320]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4322]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4321]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4323]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4323]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4324]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4322]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4325]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4324]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4326]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4325]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4327]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4326]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4327]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4328]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4329]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4328]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4329]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4330]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4331]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4330]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4332]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4331]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4333]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4332]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4334]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4333]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4335]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4335]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4336]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4334]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4337]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4336]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4338]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4338]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4339]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4337]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4340]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4339]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4341]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4341]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4342]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4340]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4343]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4343]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4344]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4342]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4345]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4345]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4346]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4344]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4347]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4346]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4348]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4348]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4349]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4347]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4350]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4349]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4351]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4351]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4352]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4350]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4353]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4352]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4354]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4353]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4355]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4354]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4356]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4355]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4357]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4357]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4358]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4356]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4359]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4358]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4359]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4361]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4360]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4361]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4362]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4360]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4362]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4363]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4364]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4363]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4365]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4364]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4366]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4365]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4367]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4366]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4368]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4367]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4368]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4370]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4369]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4370]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4371]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4369]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4372]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4371]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4373]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4372]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4374]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4374]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4375]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4373]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4376]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4375]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4377]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4376]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4378]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4377]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4379]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4378]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4379]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4381]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4380]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4381]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4382]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4380]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4382]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4384]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4383]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4384]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4383]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4385]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4386]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4385]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4387]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4387]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4388]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4386]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4389]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4389]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4390]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4388]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4391]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4391]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4392]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4390]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4393]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4392]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4394]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4393]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4395]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4394]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4396]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4396]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4397]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4395]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4398]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4397]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4399]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4398]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4400]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4400]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4401]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4399]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4402]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4402]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4401]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4403]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4404]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4403]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4404]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4406]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4405]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4406]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4407]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4405]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4408]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4407]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4409]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4409]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4410]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4408]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4411]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4410]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4412]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4411]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4413]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4412]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4414]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4413]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4415]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4415]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4416]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4414]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4417]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4417]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4418]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4416]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4419]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4418]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4420]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4419]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4421]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4420]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4422]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4422]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4423]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4421]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4424]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4423]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4424]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4425]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4426]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4425]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4427]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4426]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4428]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4427]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4429]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4428]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4430]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4430]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4431]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4429]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4432]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4431]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4433]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4432]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4434]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4433]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4435]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4435]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4436]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4434]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4437]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4436]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4438]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4438]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4439]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4437]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4440]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4439]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4441]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4441]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4440]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4442]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4443]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4442]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4444]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4443]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4445]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4444]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4446]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4445]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4447]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4446]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4448]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4448]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4449]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4447]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4450]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4449]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4451]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4450]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4452]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4451]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4453]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4452]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4454]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4453]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4455]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4454]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4456]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4456]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4457]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4455]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4457]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4458]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4459]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4458]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4459]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4460]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4461]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4460]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4462]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4461]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4463]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4463]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4464]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4462]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4465]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4464]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4466]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4466]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4465]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4467]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4468]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4467]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4469]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4469]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4470]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4468]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4471]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4471]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4472]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4470]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4473]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4473]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4474]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4472]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4475]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4475]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4476]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4474]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4477]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4477]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4478]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4476]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4479]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4479]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4480]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4480]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4481]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4481]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4482]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4478]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4483]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4482]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4484]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4483]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4485]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4485]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4486]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4484]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4487]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4487]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4488]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4486]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4489]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4488]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4490]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4489]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4491]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4491]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4492]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4490]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4493]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4492]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4494]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4493]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4495]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4494]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4496]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4496]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4497]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4495]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4498]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4497]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4498]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4499]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4500]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4499]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4501]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4500]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4502]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4501]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4503]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4502]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4504]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4503]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4505]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4505]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4506]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4504]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4507]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4506]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4508]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4508]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4509]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4507]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4510]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4509]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4511]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4510]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4512]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4511]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4513]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4512]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4514]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4513]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4514]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4516]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4516]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4517]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4515]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4517]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4518]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4515]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4519]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4519]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4520]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4518]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4521]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4521]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4522]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4520]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 4523]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4522]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4524]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4524]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4525]]} + {:process 2 :type :fail :f :txn :value [[:append 2 4523]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4526]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4526]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 4527]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4525]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4528]]} + {:process 2 :type :fail :f :txn :value [[:append 7 4527]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4529]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4529]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 4530]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4528]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4531]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4531]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4532]]} + {:process 2 :type :fail :f :txn :value [[:append 0 4530]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4533]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4533]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 4534]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4532]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4535]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4535]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4536]]} + {:process 2 :type :fail :f :txn :value [[:append 5 4534]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 4537]]} + {:process 2 :type :fail :f :txn :value [[:append 4 4537]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 4538]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4536]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4539]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4539]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4540]]} + {:process 2 :type :fail :f :txn :value [[:append 6 4538]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 4541]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4540]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4542]]} + {:process 2 :type :fail :f :txn :value [[:append 1 4541]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 4543]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4542]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4544]]} + {:process 2 :type :fail :f :txn :value [[:append 3 4543]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4544]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4545]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4545]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4546]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4546]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4547]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4547]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4548]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4548]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4549]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4549]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4550]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4550]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4551]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4551]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4552]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4552]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4553]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4553]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4554]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4554]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4555]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4555]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4556]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4556]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4557]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4557]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4558]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4558]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4559]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4559]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4560]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4560]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4561]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4561]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4562]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4562]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4563]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4563]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4564]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4564]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4565]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4565]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4566]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4566]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4567]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4567]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4568]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4568]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4569]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4569]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4570]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4570]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4571]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4571]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4572]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4572]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4573]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4573]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4574]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4574]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4575]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4575]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4576]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4576]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4577]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4577]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4578]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4578]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4579]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4579]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4580]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4580]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4581]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4581]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4582]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4582]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4583]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4583]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4584]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4584]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4585]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4585]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4586]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4586]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4587]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4587]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4588]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4588]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4589]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4589]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4590]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4590]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4591]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4591]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4592]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4592]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4593]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4593]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4594]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4594]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4595]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4595]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4596]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4596]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4597]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4597]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4598]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4598]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4599]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4599]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4600]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4600]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4601]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4601]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4602]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4602]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4603]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4603]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4604]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4604]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4605]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4605]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4606]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4606]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4607]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4607]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4608]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4608]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4609]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4609]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4610]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4610]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4611]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4611]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4612]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4612]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4613]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4613]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4614]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4614]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4615]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4615]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4616]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4616]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4617]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4617]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4618]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4618]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4619]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4619]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4620]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4620]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4621]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4621]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4622]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4622]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4623]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4623]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4624]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4624]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4625]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4625]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4626]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4626]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4627]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4627]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4628]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4628]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4629]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4629]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4630]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4630]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4631]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4631]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4632]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4632]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4633]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4633]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4634]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4634]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4635]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4635]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4636]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4636]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4637]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4637]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4638]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4638]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4639]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4639]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4640]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4640]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4641]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4641]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4642]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4642]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4643]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4643]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4644]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4644]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4645]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4645]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4646]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4646]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4647]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4647]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4648]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4648]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4649]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4649]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4650]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4650]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4651]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4651]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4652]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4652]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4653]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4653]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4654]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4654]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4655]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4655]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4656]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4656]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4657]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4657]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4658]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4658]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4659]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4659]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4660]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4660]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4661]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4661]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4662]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4662]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4663]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4663]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4664]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4664]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4665]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4665]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4666]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4666]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4667]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4667]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4668]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4668]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4669]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4669]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4670]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4670]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4671]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4671]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4672]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4672]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4673]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4673]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4674]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4674]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4675]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4675]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4676]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4676]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4677]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4677]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4678]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4678]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4679]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4679]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4680]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4680]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4681]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4681]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4682]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4682]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4683]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4683]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4684]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4684]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4685]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4685]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4686]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4686]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4687]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4687]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4688]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4688]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4689]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4689]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4690]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4690]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4691]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4691]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4692]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4692]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4693]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4693]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4694]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4694]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4695]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4695]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4696]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4696]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4697]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4697]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4698]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4698]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4699]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4699]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4700]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4700]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4701]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4701]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4702]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4702]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4703]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4703]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4704]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4704]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4705]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4705]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4706]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4706]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4707]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4707]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4708]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4708]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4709]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4709]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4710]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4710]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4711]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4711]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4712]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4712]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4713]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4713]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4714]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4714]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4715]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4715]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4716]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4716]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4717]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4717]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4718]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4718]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4719]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4719]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4720]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4720]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4721]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4721]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4722]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4722]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4723]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4723]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4724]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4724]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4725]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4725]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4726]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4726]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4727]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4727]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4728]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4728]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4729]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4729]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4730]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4730]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4731]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4731]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4732]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4732]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4733]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4733]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4734]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4734]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4735]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4735]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4736]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4736]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4737]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4737]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4738]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4738]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4739]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4739]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4740]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4740]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4741]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4741]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4742]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4742]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4743]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4743]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4744]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4744]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4745]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4745]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4746]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4746]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4747]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4747]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4748]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4748]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4749]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4749]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4750]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4750]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4751]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4751]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4752]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4752]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4753]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4753]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4754]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4754]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4755]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4755]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4756]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4756]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4757]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4757]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4758]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4758]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4759]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4759]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4760]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4760]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4761]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4761]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4762]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4762]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4763]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4763]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4764]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4764]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4765]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4765]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4766]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4766]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4767]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4767]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4768]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4768]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4769]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4769]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4770]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4770]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4771]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4771]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4772]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4772]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4773]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4773]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4774]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4774]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4775]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4775]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4776]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4776]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4777]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4777]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4778]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4778]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4779]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4779]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4780]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4780]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4781]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4781]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4782]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4782]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4783]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4783]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4784]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4784]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4785]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4785]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4786]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4786]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4787]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4787]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4788]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4788]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4789]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4789]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4790]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4790]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4791]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4791]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4792]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4792]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4793]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4793]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4794]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4794]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4795]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4795]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4796]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4796]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4797]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4797]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4798]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4798]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4799]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4799]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4800]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4800]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4801]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4801]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4802]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4802]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4803]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4803]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4804]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4804]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4805]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4805]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4806]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4806]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4807]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4807]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4808]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4808]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4809]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4809]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4810]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4810]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4811]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4811]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4812]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4812]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4813]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4813]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4814]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4814]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4815]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4815]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4816]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4816]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4817]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4817]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4818]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4818]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4819]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4819]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4820]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4820]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4821]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4821]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4822]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4822]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4823]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4823]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4824]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4824]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4825]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4825]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4826]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4826]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4827]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4827]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4828]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4828]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4829]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4829]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4830]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4830]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4831]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4831]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4832]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4832]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4833]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4833]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4834]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4834]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4835]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4835]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4836]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4836]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4837]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4837]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4838]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4838]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4839]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4839]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4840]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4840]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4841]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4841]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4842]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4842]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4843]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4843]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4844]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4844]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4845]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4845]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4846]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4846]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4847]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4847]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4848]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4848]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4849]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4849]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4850]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4850]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4851]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4851]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4852]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4852]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4853]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4853]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4854]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4854]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4855]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4855]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4856]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4856]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4857]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4857]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4858]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4858]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4859]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4859]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4860]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4860]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4861]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4861]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4862]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4862]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4863]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4863]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4864]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4864]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4865]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4865]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4866]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4866]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4867]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4867]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4868]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4868]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4869]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4869]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4870]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4870]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4871]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4871]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4872]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4872]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4873]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4873]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4874]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4874]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4875]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4875]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4876]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4876]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4877]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4877]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4878]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4878]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4879]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4879]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4880]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4880]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4881]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4881]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4882]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4882]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4883]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4883]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4884]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4884]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4885]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4885]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4886]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4886]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4887]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4887]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4888]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4888]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4889]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4889]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4890]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4890]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4891]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4891]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4892]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4892]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4893]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4893]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4894]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4894]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4895]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4895]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4896]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4896]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4897]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4897]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4898]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4898]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4899]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4899]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4900]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4900]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4901]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4901]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4902]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4902]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4903]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4903]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4904]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4904]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4905]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4905]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4906]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4906]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4907]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4907]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4908]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4908]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4909]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4909]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4910]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4910]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4911]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4911]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4912]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4912]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4913]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4913]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4914]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4914]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4915]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4915]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4916]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4916]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4917]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4917]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4918]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4918]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4919]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4919]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4920]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4920]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4921]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4921]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4922]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4922]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4923]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4923]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4924]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4924]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4925]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4925]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4926]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4926]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4927]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4927]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4928]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4928]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4929]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4929]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4930]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4930]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4931]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4931]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4932]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4932]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4933]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4933]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4934]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4934]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4935]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4935]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4936]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4936]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4937]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4937]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4938]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4938]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4939]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4939]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4940]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4940]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4941]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4941]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4942]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4942]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4943]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4943]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4944]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4944]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4945]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4945]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4946]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4946]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4947]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4947]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4948]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4948]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4949]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4949]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4950]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4950]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4951]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4951]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4952]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4952]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4953]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4953]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4954]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4954]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4955]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4955]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4956]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4956]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4957]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4957]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4958]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4958]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4959]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4959]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4960]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4960]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4961]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4961]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4962]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4962]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4963]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4963]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4964]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4964]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4965]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4965]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4966]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4966]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4967]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4967]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4968]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4968]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4969]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4969]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4970]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4970]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4971]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4971]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4972]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4972]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4973]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4973]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4974]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4974]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4975]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4975]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4976]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4976]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4977]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4977]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4978]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4978]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4979]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4979]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4980]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4980]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4981]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4981]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4982]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4982]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4983]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4983]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4984]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4984]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4985]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4985]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4986]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4986]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4987]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4987]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4988]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4988]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4989]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4989]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4990]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4990]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4991]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4991]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4992]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4992]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4993]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4993]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4994]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4994]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4995]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4995]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4996]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4996]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4997]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4997]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4998]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4998]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4999]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4999]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5000]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5000]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5001]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5001]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5002]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5002]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5003]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5003]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5004]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5004]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5005]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5005]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5006]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5006]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5007]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5007]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5008]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5008]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5009]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5009]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5010]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5010]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5011]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5011]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5012]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5012]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5013]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5013]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5014]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5014]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5015]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5015]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5016]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5016]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5017]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5017]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5018]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5018]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5019]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5019]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5020]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5020]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5021]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5021]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5022]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5022]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5023]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5023]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5024]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5024]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5025]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5025]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5026]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5026]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5027]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5027]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5028]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5028]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5029]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5029]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5030]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5030]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5031]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5031]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 471]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5032]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5032]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5033]]} + {:process 7 :type :info :f :txn :value [[:append 2 467]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5034]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5033]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5035]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5035]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5036]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5036]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5037]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5034]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5038]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5037]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5039]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5038]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5040]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5039]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5041]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5041]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5042]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5040]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5043]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5043]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5044]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5042]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5045]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5044]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5046]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5046]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5047]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5045]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5048]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5047]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5049]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5049]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5050]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5048]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5051]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5050]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5052]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5051]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5053]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5052]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5054]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5053]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5054]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5055]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5056]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5056]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5057]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5055]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5058]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5058]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5059]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5057]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5060]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5059]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5061]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5060]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5062]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5061]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5063]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5063]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5064]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5062]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5065]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5064]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5065]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5066]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5067]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5067]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5068]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5066]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5069]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5068]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5070]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5069]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5071]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5070]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5072]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5072]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5073]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5073]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5074]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5071]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5075]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5074]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5076]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5076]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5077]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5077]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5078]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5075]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5079]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5078]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5080]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5079]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5081]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5080]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5082]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5081]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5083]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5082]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5084]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5083]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5085]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5084]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5086]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5085]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5087]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5087]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5088]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5086]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5089]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5088]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5090]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5089]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5091]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5090]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5092]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5092]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5093]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5091]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5093]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5095]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5094]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5094]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5096]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5096]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5097]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5095]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5098]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5098]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5099]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5099]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5100]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5100]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5101]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5097]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5102]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5102]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5103]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5103]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5104]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5101]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5105]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5104]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5106]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5105]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5107]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5107]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5108]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5106]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5109]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5108]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5110]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5110]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5111]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5109]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5112]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5111]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5113]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5113]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5114]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5112]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5115]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5114]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5116]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5115]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5117]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5116]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5118]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5118]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5119]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5117]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5120]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5120]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5121]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5119]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5122]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5121]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5123]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5122]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5124]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5123]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5125]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5124]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5125]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5126]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5127]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5126]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5128]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5127]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5129]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5128]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5130]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5129]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5131]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5130]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5132]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5132]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5133]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5131]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5134]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5133]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5135]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5135]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5136]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5134]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5137]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5136]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5138]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5138]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5139]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5137]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5140]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5139]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5141]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5141]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5142]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5140]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5143]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5142]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5144]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5144]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5145]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5143]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5146]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5145]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5147]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5147]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5148]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5146]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5149]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5148]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5150]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5149]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5151]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5150]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5152]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5152]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5153]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5153]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5154]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5154]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5155]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5151]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5156]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5155]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5157]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5156]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5158]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5157]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5159]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5158]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5159]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5161]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5160]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5161]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5162]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5160]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5163]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5162]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5164]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5163]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5165]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5164]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5166]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5166]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5167]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5165]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5168]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5167]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5169]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5169]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5170]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5168]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5171]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5170]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5172]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5171]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5173]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5172]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5174]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5174]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5175]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5173]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5176]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5175]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5177]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5176]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5178]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5177]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5179]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5179]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5180]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5180]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5178]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5181]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5182]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5181]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5183]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5183]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5184]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5182]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5185]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5184]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5186]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5186]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5187]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5185]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5188]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5187]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5189]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5189]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5190]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5188]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5191]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5190]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5192]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5192]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5193]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5191]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5194]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5193]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5195]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5195]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5196]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5194]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5197]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5197]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5198]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5196]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5199]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5199]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5200]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5198]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5201]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5200]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5202]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5202]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5203]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5203]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5204]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5201]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5205]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5204]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5206]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5205]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5207]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5206]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5208]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5207]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5209]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5208]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5210]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5210]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5211]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5209]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5212]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5212]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5213]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5211]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5214]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5214]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5215]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5213]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5216]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5216]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5217]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5215]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5218]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5217]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5219]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5218]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5220]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5220]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5221]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5219]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5222]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5221]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5223]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5222]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5224]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5223]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5225]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5224]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5225]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5226]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5227]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5226]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5228]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5228]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5229]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5227]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5230]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5230]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5229]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5231]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5232]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5231]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5233]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5232]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5234]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5233]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5235]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5234]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5235]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5236]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5237]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5236]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5238]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5237]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5238]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5239]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5240]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5240]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5241]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5239]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5242]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5241]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5243]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5243]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5244]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5242]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5245]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5244]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5246]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5245]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5247]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5246]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5248]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5247]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5249]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5248]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5250]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5250]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5251]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5249]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5252]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5251]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5253]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5253]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5254]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5252]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5255]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5254]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5256]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5256]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5257]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5257]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5258]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5255]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5259]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5259]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5260]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5260]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5261]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5258]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5262]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5262]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5263]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5261]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5264]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5263]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5265]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5265]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5266]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5264]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5267]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5267]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5266]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5268]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5269]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5269]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5270]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5268]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5271]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5270]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5272]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5271]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5273]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5272]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5274]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5274]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5275]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5273]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5276]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5275]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5277]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5277]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5278]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5276]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5279]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5278]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5280]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5280]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5281]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5279]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5282]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5282]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5283]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5281]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5284]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5283]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5285]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5284]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5286]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5285]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5287]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5286]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5288]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5287]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5289]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5289]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5290]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5288]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5291]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5290]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5292]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5292]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5293]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5291]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5293]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5294]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5295]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5294]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5296]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5295]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5297]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5297]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5298]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5298]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5299]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5296]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5300]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5300]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5301]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5299]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5302]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5302]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5303]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5301]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5304]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5303]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5305]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5304]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5306]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5305]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5307]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5307]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5308]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5306]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5309]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5308]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5310]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5310]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5311]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5309]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5312]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5311]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5313]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5313]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5314]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5312]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5315]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5314]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5316]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5316]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5317]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5315]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5318]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5317]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5319]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5319]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5320]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5318]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5321]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5321]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5322]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5322]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5323]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5323]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5324]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5320]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5325]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5324]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5326]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5325]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5327]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5326]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5327]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5328]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5329]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5328]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5330]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5329]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5331]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5330]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5332]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5331]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5333]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5332]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5334]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5334]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5335]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5333]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5336]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5336]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5337]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5335]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5338]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5337]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5339]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5338]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5340]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5339]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5341]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5340]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5342]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5342]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5343]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5341]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5344]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5343]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5345]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5345]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5346]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5344]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5347]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5346]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5348]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5348]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5349]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5347]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5350]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5349]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5350]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5351]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5352]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5351]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5353]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5352]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5354]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5354]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5355]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5353]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5356]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5355]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5357]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5356]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5358]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5357]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5359]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5359]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5360]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5360]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5361]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5358]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5362]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5361]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5363]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5362]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5364]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5363]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5365]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5364]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5366]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5366]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5367]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5365]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5368]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5367]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5369]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5369]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5370]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5368]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5371]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5370]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5372]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5372]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5373]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5371]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5374]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5374]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5375]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5373]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5376]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5375]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5377]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5377]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5378]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5376]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5379]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5378]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5380]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5380]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5381]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5379]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5382]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5381]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5383]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5382]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5384]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5383]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5385]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5384]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5386]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5386]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5387]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5385]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5388]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5387]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5389]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5388]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5390]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5389]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5391]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5391]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5392]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5390]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5393]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5393]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5394]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5392]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5395]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5394]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5396]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5395]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5397]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5396]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5397]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5399]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5398]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5399]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5400]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5398]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5401]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5400]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5402]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5401]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5403]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5402]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5404]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5403]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5405]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5404]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5406]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5405]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5407]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5406]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5408]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5407]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5409]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5408]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5410]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5409]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5411]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5410]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5412]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5411]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5413]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5412]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5414]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5414]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5415]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5413]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5416]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5416]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5417]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5415]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5418]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5418]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5419]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5417]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5419]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5420]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5421]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5420]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5422]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5421]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5423]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5423]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5424]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5422]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5425]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5424]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5426]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5425]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5426]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5427]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5428]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5427]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5429]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5428]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5430]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5429]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5431]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5431]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5432]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5430]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5433]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5433]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5434]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5432]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5435]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5434]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5436]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5436]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5437]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5435]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5438]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5438]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5439]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5437]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5439]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5440]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5441]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5440]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5442]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5441]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5443]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5442]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5444]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5443]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5445]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5444]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5446]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5445]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5447]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5446]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5448]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5448]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5449]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5447]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5449]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5450]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5451]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5450]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5452]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5451]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5453]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5452]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5454]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5453]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5455]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5455]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5456]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5454]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5457]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5456]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5458]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5458]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5459]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5457]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5460]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5460]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5461]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5459]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5461]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5462]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5463]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5462]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5464]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5463]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5465]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5464]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5466]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5465]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5467]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5466]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5468]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5467]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5469]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5469]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5470]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5468]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5471]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5471]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5472]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5470]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5473]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5472]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5474]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5473]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5475]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5474]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5476]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5475]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5477]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5476]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5478]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5477]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5479]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5478]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5480]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5479]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5481]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5480]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5482]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5481]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5483]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5482]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5484]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5483]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5485]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5484]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5486]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5485]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5487]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5486]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5488]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5487]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5489]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5489]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5490]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5488]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5491]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5490]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5492]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5491]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5493]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5492]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5494]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5493]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5495]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5494]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5496]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5495]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5497]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5497]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5498]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5496]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5499]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5498]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5500]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5499]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5501]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5501]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5502]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5500]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5503]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5502]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5504]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5503]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5505]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5504]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5506]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5505]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5507]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5506]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5508]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5507]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5509]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5508]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5510]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5509]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5511]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5510]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5512]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5511]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5513]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5512]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5514]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5513]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5515]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5514]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5516]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5515]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5517]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5516]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5518]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5517]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5519]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5518]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5520]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5519]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5520]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5522]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5521]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5522]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5523]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5521]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5524]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5523]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5525]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5524]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5526]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5525]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5527]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5526]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5528]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5528]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5529]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5527]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5530]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5529]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5531]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5531]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5532]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5530]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5533]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5532]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5534]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5533]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5535]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5534]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5536]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5535]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5537]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5536]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5538]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5538]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5539]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5537]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5540]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5539]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5541]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5541]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5542]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5540]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5543]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5543]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5544]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5542]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5545]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5544]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5546]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5545]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5547]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5546]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5548]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5547]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5549]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5548]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5550]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5549]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5551]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5550]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5552]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5551]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5553]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5552]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5554]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5554]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5555]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5553]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5556]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5555]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5557]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5557]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5558]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5558]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5559]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5556]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5560]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5560]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5561]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5559]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5562]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5561]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5563]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5563]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5564]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5562]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5565]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5565]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5566]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5564]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5567]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5566]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5568]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5567]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5569]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5568]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5569]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5571]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5570]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5571]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5572]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5570]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5573]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5572]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5574]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5573]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5575]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5574]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5575]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5577]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5576]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5577]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5578]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5576]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5579]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5578]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5580]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5579]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5581]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5580]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5582]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5581]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5583]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5582]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5584]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5583]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5585]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5584]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5586]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5585]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5587]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5586]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5588]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5588]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5589]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5587]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5589]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5591]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5590]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5591]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5592]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5590]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5593]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5592]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5594]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5593]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5595]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5594]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5596]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5595]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5597]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5596]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5598]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5597]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5598]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5599]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5600]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5599]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5601]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5601]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5602]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5602]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5603]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5600]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5604]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5604]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5605]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5603]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5605]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5606]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5607]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5606]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5608]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5607]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5609]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5608]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5610]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5609]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5610]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5611]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5612]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5611]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5613]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5612]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5614]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5614]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5615]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5613]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5616]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5615]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5617]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5617]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5618]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5618]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5619]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5619]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5620]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5616]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5621]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5620]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5622]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5621]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5623]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5622]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5624]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5623]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5625]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5624]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5626]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5625]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5627]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5626]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5628]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5627]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5629]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5628]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5630]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5630]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5631]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5629]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5631]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5632]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5632]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5633]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5634]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5633]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5634]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5635]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5636]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5635]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5636]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5637]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5638]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5637]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5639]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5638]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5640]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5639]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5641]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5640]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5642]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5641]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5643]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5642]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5644]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5643]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5645]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5644]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5646]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5645]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5647]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5646]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5648]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5647]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5649]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5648]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5650]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5649]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5651]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5650]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5652]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5652]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5653]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5651]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5654]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5653]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5655]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5654]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5656]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5655]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5657]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5656]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5658]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5657]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5659]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5659]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5660]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5658]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5661]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5660]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5662]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5661]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5663]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5662]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5664]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5663]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5665]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5665]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5666]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5664]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5667]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5666]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5668]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5668]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5669]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5667]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5670]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5669]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5671]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5670]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5672]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5671]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5673]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5672]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5674]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5673]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5675]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5674]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5676]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5675]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5677]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5676]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5678]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5677]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5679]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5678]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5680]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5679]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5681]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5680]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5682]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5681]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5683]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5682]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5684]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5684]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5685]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5683]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5685]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5686]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5687]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5686]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5688]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5687]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5689]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5688]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5690]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5689]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5691]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5690]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5692]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5692]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5693]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5691]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5694]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5693]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5695]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5694]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5696]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5695]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5697]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5696]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5698]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5697]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5699]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5698]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5700]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5700]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5701]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5699]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5702]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5702]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5703]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5701]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5703]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5704]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5705]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5704]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5706]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5705]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5707]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5706]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5708]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5707]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5708]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5709]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5710]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5709]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5711]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5710]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5712]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5711]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5713]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5713]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5714]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5712]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5715]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5714]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5716]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5716]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5717]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5715]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5718]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5718]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5719]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5717]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5720]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5720]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5721]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5719]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5722]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5722]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5723]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5721]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5724]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5723]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5725]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5724]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5726]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5725]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5727]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5726]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5728]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5727]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5729]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5728]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5730]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5729]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5731]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5730]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5732]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5731]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5733]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5732]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5734]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5734]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5735]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5733]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5736]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5735]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5737]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5737]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5738]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5736]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5739]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5738]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5740]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5739]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5741]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5740]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5742]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5741]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5743]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5742]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5744]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5743]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5745]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5744]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5746]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5745]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5747]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5746]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5748]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5747]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5749]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5748]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5749]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5751]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5750]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5751]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5752]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5750]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5753]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5752]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5754]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5753]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5754]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5755]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5756]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5755]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5757]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5756]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5758]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5757]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5759]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5758]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5760]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5759]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5761]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5760]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5762]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5761]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5763]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5762]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5764]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5763]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5765]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5764]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5766]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5765]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5766]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5767]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5768]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5767]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5769]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5769]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5770]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5768]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5771]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5770]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5772]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5771]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5773]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5772]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5774]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5773]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5775]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5774]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5776]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5775]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5777]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5776]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5778]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5777]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5779]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5778]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5780]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5779]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5781]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5781]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5782]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5780]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5782]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5783]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5784]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5783]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5785]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5784]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5786]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5785]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5786]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5787]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5788]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5787]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5789]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5788]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5790]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5789]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5791]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5790]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5792]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5791]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5793]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5792]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5794]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5793]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5794]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5795]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5796]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5795]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5797]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5796]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5798]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5797]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5798]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5799]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5800]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5799]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5801]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5801]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5802]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5800]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5803]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5802]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5804]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5803]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5805]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5805]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5806]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5804]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5806]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5807]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5808]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5807]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5809]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5808]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5810]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5810]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5811]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5809]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5811]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5813]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5812]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5813]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5814]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5812]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5815]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5814]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5816]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5816]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5817]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5815]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5817]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5818]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5819]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5818]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5820]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5819]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5821]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5820]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5822]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5821]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5823]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5822]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5824]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5823]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5825]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5824]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5826]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5825]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5827]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5826]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5828]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5827]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5829]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5828]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5830]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5829]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5831]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5830]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5832]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5831]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5833]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5833]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5834]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5832]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5835]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5834]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5836]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5835]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5837]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5836]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5838]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5837]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5839]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5838]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5840]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5839]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5841]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5840]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5842]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5841]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5843]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5842]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5844]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5843]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5845]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5845]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5846]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5844]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5847]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5847]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5848]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5846]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5849]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5848]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5850]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5849]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5851]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5851]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5852]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5850]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5853]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5852]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5854]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5853]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5855]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5854]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5856]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5855]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5857]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5856]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5858]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5857]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5859]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5858]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5860]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5859]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5861]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5860]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5862]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5861]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5863]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5862]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5863]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5864]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5865]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5864]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5866]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5866]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5867]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5865]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5868]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5868]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5869]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5867]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5869]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5870]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5871]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5870]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5872]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5871]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5873]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5872]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5874]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5874]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5875]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5873]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5876]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5876]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5877]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5875]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5878]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5878]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5879]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5877]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5880]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5880]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5881]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5879]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5882]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5881]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5883]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5883]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5884]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5882]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5885]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5885]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5886]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5884]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5887]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5886]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5888]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5887]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5889]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5888]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5890]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5889]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5891]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5890]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5892]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5891]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5892]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5893]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5894]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5893]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5895]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5894]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5896]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5895]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5897]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5896]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5898]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5897]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5899]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5899]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5900]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5898]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5901]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5901]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5902]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5900]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5903]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5903]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5904]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5902]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5905]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5904]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5906]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5905]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5907]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5906]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5908]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5907]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5909]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5908]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5910]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5909]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5911]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5910]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5912]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5911]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5913]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5912]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5914]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5914]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5915]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5913]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5915]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5916]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5917]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5916]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5918]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5917]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5919]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5918]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5919]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5920]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5921]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5920]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5922]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5922]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5923]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5921]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5924]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5923]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5925]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5924]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5926]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5926]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5927]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5925]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5928]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5928]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5929]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5927]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5930]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5930]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5931]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5929]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5932]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5932]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5933]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5931]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5934]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5934]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5935]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5933]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5936]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5936]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5937]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5935]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5937]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5939]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5938]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5939]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5940]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5938]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5941]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5940]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5942]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5941]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5942]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5943]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5944]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5943]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5945]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5944]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5946]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5945]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5947]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5946]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5948]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5947]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5949]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5948]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5950]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5949]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5951]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5950]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5952]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5951]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5953]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5953]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5954]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5952]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5955]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5955]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5956]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5954]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5957]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5956]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5958]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5958]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5959]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5957]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5960]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5960]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5961]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5959]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5962]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5962]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5963]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5961]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5964]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5964]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5965]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5963]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5966]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5966]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5967]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5965]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5968]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5968]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5969]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5967]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5970]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5970]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5971]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5969]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5971]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5972]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5973]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5972]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5974]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5973]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5975]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5974]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 5976]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5975]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5977]]} + {:process 5 :type :fail :f :txn :value [[:append 2 5976]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5978]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5977]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5979]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5978]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 5980]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5979]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5981]]} + {:process 5 :type :fail :f :txn :value [[:append 1 5980]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5982]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5981]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 5983]]} + {:process 7 :type :fail :f :txn :value [[:append 2 5983]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5984]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5984]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 5985]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5982]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 5986]]} + {:process 5 :type :fail :f :txn :value [[:append 4 5986]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 5987]]} + {:process 7 :type :fail :f :txn :value [[:append 5 5985]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5988]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5988]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 5989]]} + {:process 5 :type :fail :f :txn :value [[:append 5 5987]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 5990]]} + {:process 7 :type :fail :f :txn :value [[:append 0 5989]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5991]]} + {:process 5 :type :fail :f :txn :value [[:append 3 5990]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 5992]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5991]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 5993]]} + {:process 5 :type :fail :f :txn :value [[:append 0 5992]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 5994]]} + {:process 7 :type :fail :f :txn :value [[:append 3 5993]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 5995]]} + {:process 7 :type :fail :f :txn :value [[:append 4 5995]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 5996]]} + {:process 5 :type :fail :f :txn :value [[:append 6 5994]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 5997]]} + {:process 7 :type :fail :f :txn :value [[:append 6 5996]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 5998]]} + {:process 7 :type :fail :f :txn :value [[:append 7 5998]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 5999]]} + {:process 7 :type :fail :f :txn :value [[:append 1 5999]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6000]]} + {:process 5 :type :fail :f :txn :value [[:append 7 5997]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6001]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6000]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6002]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6001]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6003]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6003]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6004]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6002]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6005]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6004]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6006]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6005]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6007]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6006]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6008]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6007]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6009]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6009]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6010]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6008]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6011]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6011]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6012]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6010]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6013]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6012]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6014]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6014]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6015]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6013]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6016]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6015]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6017]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6017]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6018]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6016]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6019]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6018]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6020]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6020]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6021]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6019]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6022]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6021]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6023]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6022]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6024]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6023]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6025]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6024]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6026]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6025]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6027]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6026]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6028]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6027]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6029]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6029]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6030]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6028]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6031]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6031]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6032]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6030]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6033]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6032]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6033]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6034]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6035]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6034]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6036]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6035]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6037]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6036]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6038]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6037]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6039]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6038]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6040]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6039]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6041]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6040]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6042]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6041]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6043]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6042]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6044]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6043]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6045]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6044]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6046]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6045]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6047]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6046]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6047]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6048]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6049]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6048]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6050]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6049]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6051]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6050]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6052]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6052]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6053]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6051]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6054]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6053]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6055]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6055]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6056]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6054]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6057]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6057]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6058]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6056]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6059]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6058]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6060]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6059]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6061]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6060]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6062]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6061]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6063]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6062]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6064]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6064]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6065]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6063]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6066]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6065]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6067]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6066]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6068]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6067]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6069]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6068]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6070]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6069]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6071]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6070]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6072]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6071]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6073]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6072]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6074]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6073]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6075]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6074]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6076]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6075]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6077]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6076]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6078]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6077]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6079]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6078]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6080]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6079]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6081]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6080]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6082]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6081]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6083]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6082]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6084]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6084]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6085]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6083]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6085]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6086]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6087]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6086]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6088]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6087]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6089]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6088]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6089]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6090]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6091]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6091]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6092]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6090]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6093]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6092]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6094]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6093]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6095]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6094]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6096]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6096]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6097]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6095]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6098]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6098]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6099]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6097]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6100]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6099]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6101]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6100]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6102]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6101]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6103]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6102]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6104]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6103]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6105]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6104]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6106]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6105]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6107]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6106]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6108]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6107]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6109]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6108]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6110]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6110]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6111]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6109]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6112]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6111]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6113]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6113]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6114]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6112]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6115]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6114]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6116]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6116]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6117]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6115]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6118]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6117]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6119]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6119]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6120]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6118]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6121]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6121]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6122]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6120]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6123]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6122]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6124]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6123]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6125]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6124]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6126]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6126]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6127]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6125]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6128]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6128]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6129]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6127]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6129]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6130]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6131]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6130]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6132]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6131]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6133]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6132]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6134]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6133]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6135]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6134]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6136]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6135]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6137]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6136]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6138]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6137]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6139]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6138]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6140]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6139]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6141]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6140]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6142]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6141]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6143]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6142]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6144]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6143]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6145]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6144]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6146]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6145]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6147]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6146]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6147]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6148]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6149]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6148]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6149]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6150]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6151]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6150]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6152]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6151]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6153]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6153]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6154]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6152]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6154]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6155]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6156]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6155]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6157]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6156]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6158]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6157]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6158]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6159]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6160]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6159]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6161]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6161]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6162]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6160]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6163]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6162]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6164]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6163]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6165]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6164]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6166]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6165]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6167]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6166]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6168]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6167]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6169]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6168]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6170]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6169]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6171]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6170]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6172]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6171]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6173]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6172]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6174]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6174]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6175]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6173]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6176]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6176]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6177]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6175]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6177]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6178]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6179]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6178]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6180]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6180]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6181]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6179]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6182]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6181]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6183]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6182]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6184]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6184]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6185]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6183]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6186]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6185]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6187]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6187]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6188]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6186]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6189]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6189]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6190]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6188]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6191]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6190]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6192]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6191]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6193]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6192]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6194]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6194]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6195]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6193]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6196]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6196]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6197]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6195]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6197]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6198]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6199]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6198]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6200]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6199]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6201]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6200]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6202]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6201]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6202]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6203]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6203]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6204]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6204]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6205]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6206]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6206]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6207]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6205]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6208]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6207]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6209]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6208]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6210]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6209]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6211]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6210]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6212]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6211]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6212]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6213]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6214]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6213]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6215]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6214]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6216]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6215]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6217]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6216]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6218]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6217]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6219]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6218]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6220]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6219]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6221]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6220]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6222]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6221]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6223]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6223]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6224]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6222]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6225]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6224]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6226]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6225]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6227]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6226]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6228]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6227]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6229]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6229]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6230]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6230]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6231]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6228]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6232]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6232]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6233]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6231]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6234]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6234]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6235]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6233]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6236]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6236]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6237]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6235]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6238]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6237]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6239]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6238]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6240]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6239]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6240]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6242]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6241]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6242]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6243]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6241]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6244]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6243]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6245]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6244]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6246]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6245]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6247]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6246]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6248]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6247]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6249]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6248]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6250]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6249]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6251]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6250]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6252]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6252]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6253]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6251]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6253]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6254]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6255]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6254]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6255]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6257]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6256]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6257]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6258]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6256]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6259]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6259]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6260]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6258]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6260]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6261]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6262]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6261]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6263]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6262]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6264]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6263]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6265]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6265]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6266]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6264]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6267]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6266]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6268]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6267]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6268]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6269]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6270]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6269]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6271]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6270]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6272]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6271]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6272]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6273]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6274]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6273]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6275]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6274]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6276]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6275]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6277]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6276]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6278]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6277]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6279]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6278]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6280]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6280]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6281]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6279]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6282]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6281]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6283]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6283]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6284]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6282]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6285]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6284]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6286]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6285]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6287]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6286]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6288]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6288]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6289]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6287]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6290]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6290]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6291]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6289]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6292]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6292]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6293]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6293]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6294]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6291]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6295]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6295]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6296]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6294]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6297]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6296]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6298]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6297]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6299]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6298]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6300]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6299]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6301]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6300]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6302]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6301]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6303]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6302]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6304]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6303]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6305]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6304]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6306]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6305]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6307]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6307]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6308]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6306]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6309]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6308]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6310]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6309]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6311]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6310]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6312]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6311]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6312]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6313]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6314]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6313]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6315]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6314]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6316]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6315]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6317]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6317]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6316]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6318]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6319]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6318]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6320]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6320]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6321]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6321]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6322]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6319]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6323]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6322]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6324]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6323]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6325]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6324]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6326]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6325]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6327]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6327]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6328]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6326]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6329]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6328]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6330]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6329]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6331]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6330]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6332]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6331]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6333]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6332]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6334]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6333]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6335]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6334]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6336]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6335]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6337]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6336]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6338]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6337]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6339]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6338]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6340]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6339]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6341]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6340]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6342]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6341]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6343]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6342]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6344]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6344]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6345]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6343]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6346]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6346]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6347]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6345]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6348]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6347]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6349]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6349]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6350]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6348]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6351]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6350]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6352]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6351]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6353]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6352]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6354]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6353]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6355]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6355]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6356]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6354]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6357]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6357]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6358]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6356]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6359]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6358]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6360]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6359]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6360]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6361]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6362]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6361]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6363]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6362]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6364]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6363]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6364]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6365]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6366]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6365]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6367]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6366]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6368]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6367]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6369]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6368]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6370]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6369]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6371]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6370]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6372]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6372]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6373]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6371]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6374]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6373]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6374]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6375]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6376]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6375]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6377]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6376]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6377]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6379]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6378]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6379]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6380]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6378]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6381]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6380]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6382]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6381]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6383]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6382]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6384]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6383]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6385]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6384]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6386]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6385]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6387]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6386]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6388]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6387]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6389]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6389]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6390]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6388]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6391]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6391]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6392]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6390]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6393]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6392]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6394]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6393]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6395]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6394]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6396]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6395]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6397]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6396]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6398]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6398]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6399]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6397]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6399]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6400]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6401]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6400]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6402]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6401]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6403]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6402]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6404]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6403]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6405]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6404]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6406]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6405]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6407]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6406]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6408]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6407]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6409]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6408]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6410]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6409]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6411]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6410]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6412]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6411]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6413]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6412]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6414]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6413]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6415]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6414]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6416]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6415]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6417]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6416]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6418]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6417]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6419]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6418]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6420]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6420]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6421]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6419]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6422]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6422]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6423]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6421]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6424]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6424]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6425]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6423]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6425]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6426]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6427]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6426]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6428]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6427]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6429]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6428]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6430]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6429]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6431]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6430]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6431]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6432]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6433]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6432]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6434]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6433]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6435]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6434]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6436]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6435]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6437]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6436]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6438]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6437]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6439]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6438]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6440]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6439]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6441]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6440]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6442]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6441]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6443]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6442]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6444]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6443]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6445]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6444]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6446]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6445]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6447]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6446]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6448]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6447]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6449]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6448]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6450]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6449]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6451]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6450]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6452]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6451]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6453]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6453]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6454]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6452]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6455]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6455]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6456]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6454]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6457]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6456]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6458]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6457]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6459]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6459]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6460]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6458]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6461]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6460]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6462]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6461]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6463]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6462]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6464]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6463]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6465]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6464]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6466]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6465]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6467]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6466]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6468]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6467]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6469]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6468]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6470]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6470]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6471]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6469]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6471]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6472]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6473]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6472]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6474]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6473]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6475]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6475]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6476]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6474]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6477]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6477]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6478]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6476]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6479]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6479]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6480]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6478]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6481]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6480]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6482]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6481]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6483]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6482]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6484]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6483]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6485]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6484]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6486]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6485]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6487]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6487]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6488]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6486]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6489]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6488]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6490]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6489]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6491]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6491]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6492]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6490]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6493]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6493]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6494]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6492]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6495]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6494]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6496]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6496]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6497]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6495]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6498]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6498]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6499]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6497]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6500]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6500]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6501]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6499]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6502]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6502]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6503]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6501]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6503]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6504]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6505]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6504]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6506]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6506]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6507]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6505]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6507]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6508]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6509]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6508]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6510]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6509]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6511]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6510]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6512]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6511]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6513]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6512]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6514]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6513]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6515]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6514]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6516]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6515]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6517]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6516]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6518]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6518]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6519]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6517]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6520]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6519]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6521]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6521]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6522]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6520]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6523]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6523]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6524]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6522]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6525]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6524]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6526]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6525]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6527]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6527]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6528]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6528]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6529]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6526]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6530]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6530]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6531]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6529]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6532]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6532]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6533]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6531]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6534]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6533]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6535]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6535]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6536]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6534]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6537]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6537]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6538]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6536]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6539]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6538]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6540]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6539]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6541]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6540]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6541]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6543]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6542]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6543]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6544]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6544]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6545]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6545]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6546]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6542]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6547]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6546]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6548]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6547]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6549]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6548]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6550]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6549]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6551]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6551]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6552]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6552]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6553]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6553]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6554]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6550]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6555]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6554]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6556]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6556]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6557]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6555]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6557]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6558]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6559]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6558]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6560]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6559]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6561]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6561]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6562]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6562]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6563]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6560]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6564]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6564]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6565]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6563]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6566]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6566]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6567]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6565]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6568]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6567]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6569]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6568]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6570]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6569]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6571]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6570]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6572]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6571]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6573]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6573]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6574]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6572]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6575]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6575]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6576]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6574]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6577]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6577]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6578]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6578]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6579]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6576]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6580]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6580]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6581]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6579]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6582]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6582]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6583]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6581]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6584]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6584]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6585]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6583]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6586]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6586]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6587]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6585]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6588]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6588]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6589]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6589]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6590]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6590]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6591]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6587]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6592]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6591]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6593]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6593]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6594]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6592]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6595]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6594]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6596]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6595]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6596]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6597]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6598]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6597]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6599]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6598]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6600]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6599]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6600]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6602]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6601]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6602]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6603]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6601]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6604]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6604]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6605]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6605]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6606]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6603]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6607]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6607]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6608]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6606]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6609]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6609]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6610]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6610]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6611]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6608]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6612]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6612]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6613]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6611]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6614]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6614]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6615]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6613]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6616]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6615]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6617]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6617]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6618]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6616]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6619]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6618]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6620]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6619]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6621]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6620]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6622]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6622]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6623]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6621]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6624]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6624]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6625]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6623]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6626]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6626]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6627]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6625]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6628]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6628]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6629]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6627]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6630]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6630]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6631]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6629]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6632]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6632]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6633]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6631]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6634]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6633]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6635]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6634]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6636]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6635]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6637]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6636]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6638]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6637]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6639]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6639]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6640]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6638]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6641]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6641]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6642]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6640]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6643]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6642]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6644]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6643]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6645]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6644]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6645]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6647]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6646]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6647]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6648]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6648]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6649]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6649]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6650]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6646]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6651]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6650]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6652]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6651]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6652]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6653]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6654]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6654]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6655]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6653]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6656]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6656]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6657]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6655]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6658]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6658]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6659]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6657]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6660]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6659]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6661]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6660]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6662]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6661]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6663]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6662]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6664]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6664]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6663]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6666]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6665]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6666]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6667]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6665]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6668]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6667]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6669]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6668]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6669]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6670]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6671]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6670]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6672]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6671]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6673]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6672]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6674]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6673]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6675]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6675]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6676]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6674]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6677]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6676]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6678]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6677]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6679]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6678]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6680]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6679]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6681]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6680]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6682]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6681]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6683]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6682]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6684]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6683]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6685]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6685]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6686]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6684]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6686]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6687]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6688]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6687]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6689]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6689]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6690]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6688]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6691]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6690]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6692]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6691]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6692]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6693]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6694]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6693]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6695]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6694]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6696]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6695]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6697]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6696]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6698]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6697]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6699]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6698]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6700]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6699]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6701]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6700]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6702]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6701]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6703]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6702]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6704]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6703]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6705]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6704]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6706]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6705]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6707]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6707]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6708]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6706]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6709]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6708]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6710]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6709]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6711]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6710]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6712]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6711]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6713]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6712]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6714]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6713]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6714]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6715]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6715]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6716]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6717]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6717]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6718]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6718]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6719]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6716]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6720]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6720]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6721]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6719]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6722]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6722]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6723]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6721]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6724]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6724]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6725]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6723]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6726]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6726]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6727]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6725]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6727]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6728]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6729]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6728]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6730]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6729]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6731]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6730]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6731]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6732]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6733]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6732]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6734]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6734]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6735]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6733]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6735]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6737]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6736]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6737]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6738]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6736]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6739]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6738]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6740]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6739]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6741]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6740]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6742]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6741]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6743]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6742]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6744]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6743]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6745]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6744]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6746]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6745]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6747]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6747]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6748]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6746]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6749]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6748]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6750]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6750]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6751]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6751]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6752]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6749]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6753]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6753]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6754]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6752]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6755]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6754]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6756]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6755]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6757]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6757]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6758]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6756]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6759]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6759]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6760]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6758]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6761]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6760]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6762]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6761]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6763]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6762]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6764]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6763]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6765]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6765]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6766]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6764]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6767]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6767]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6768]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6766]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6769]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6769]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6770]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6768]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6771]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6770]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6772]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6771]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6773]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6772]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6773]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6774]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6775]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6774]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6776]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6775]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6777]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6776]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6778]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6777]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6779]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6778]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6780]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6779]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6781]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6780]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6782]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6781]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6783]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6783]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6784]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6782]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6785]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6785]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6786]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6784]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6787]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6786]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6788]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6788]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6789]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6787]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6790]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6790]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6791]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6789]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6792]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6791]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6793]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6793]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6794]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6792]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6795]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6794]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6796]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6795]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6797]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6796]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6798]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6797]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6799]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6798]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6800]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6799]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6800]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6801]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6802]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6801]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6803]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6802]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6804]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6804]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6805]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6803]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6806]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6806]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6807]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6805]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6808]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6808]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6809]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6807]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6810]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6810]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6811]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6809]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6812]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6812]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6813]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6811]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6814]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6814]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6815]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6813]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6816]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6816]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6817]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6815]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6818]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6818]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6819]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6817]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6820]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6820]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6821]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6819]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6822]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6822]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6823]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6821]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6824]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6824]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6825]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6823]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6826]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6826]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6827]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6825]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6828]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6828]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6829]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6827]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6829]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6830]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6831]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6830]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6832]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6831]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6833]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6832]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6834]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6834]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6835]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6833]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6836]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6835]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6837]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6836]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6838]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6837]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6839]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6839]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6840]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6838]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6841]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6840]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6842]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6841]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6843]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6842]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6844]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6844]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6845]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6843]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6846]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6846]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6847]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6845]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6848]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6847]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6848]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6849]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6850]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6849]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6851]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6850]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6852]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6852]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6853]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6851]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6854]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6854]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6855]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6853]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6856]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6856]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6857]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6855]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6857]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6859]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6858]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6859]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6860]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6858]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6861]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6860]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6862]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6861]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6863]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6862]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6864]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6863]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6865]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6864]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6866]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6865]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6866]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6867]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6868]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6867]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6869]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6868]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6870]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6869]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6871]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6870]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6872]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6871]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6873]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6872]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6874]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6873]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6875]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6874]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6876]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6875]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6877]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6876]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6878]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6878]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6879]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6877]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6880]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6879]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6881]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6880]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6882]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6881]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6883]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6882]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6884]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6883]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6885]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6884]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6886]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6885]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6887]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6886]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6888]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6887]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6889]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6888]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6890]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6889]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6891]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6890]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6892]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6891]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6893]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6892]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6894]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6893]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6895]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6894]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6896]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6895]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6897]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6896]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6898]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6897]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6899]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6898]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6900]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6899]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6901]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6900]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6902]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6901]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6903]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6903]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6904]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6902]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6905]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6905]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6906]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6904]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6907]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6906]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6908]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6908]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6909]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6907]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6910]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6910]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6911]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6909]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6912]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6911]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6913]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6912]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6914]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6913]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6915]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6914]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6916]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6915]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6917]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6916]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6918]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6918]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6919]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6917]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6920]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6919]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6921]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6921]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6922]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6920]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6923]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6922]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6924]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6924]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6925]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6925]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6926]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6926]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6927]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6923]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6928]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6927]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6929]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6928]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6930]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6929]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6931]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6930]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6932]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6931]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6933]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6932]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6934]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6934]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6935]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6933]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6936]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6936]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6937]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6935]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6938]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6937]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6939]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6938]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6940]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6939]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6941]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6940]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6942]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6941]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6943]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6942]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6943]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6944]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6945]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6944]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6945]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6946]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6947]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6946]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6948]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6947]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6949]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6949]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6950]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6948]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6950]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6951]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6952]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6951]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6953]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6952]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6954]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6953]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6955]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6954]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6956]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6955]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6957]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6957]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6958]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6956]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6959]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6958]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6960]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6959]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6961]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6960]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6962]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6961]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6963]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6962]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6964]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6963]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6965]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6964]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6966]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6965]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6967]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6966]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6968]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6967]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6969]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6968]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6970]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6969]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6971]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6970]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6972]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6971]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6973]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6972]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6973]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6974]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6975]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6974]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6976]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6975]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6977]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6976]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 6978]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6977]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6979]]} + {:process 5 :type :fail :f :txn :value [[:append 6 6978]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6980]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6979]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 6981]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6980]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 6982]]} + {:process 7 :type :fail :f :txn :value [[:append 2 6981]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6983]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6983]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 6984]]} + {:process 5 :type :fail :f :txn :value [[:append 5 6982]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6985]]} + {:process 7 :type :fail :f :txn :value [[:append 5 6984]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6986]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6985]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 6987]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6986]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 6988]]} + {:process 5 :type :fail :f :txn :value [[:append 0 6987]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6989]]} + {:process 7 :type :fail :f :txn :value [[:append 0 6988]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 6990]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6989]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 6991]]} + {:process 7 :type :fail :f :txn :value [[:append 1 6990]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 6992]]} + {:process 5 :type :fail :f :txn :value [[:append 7 6991]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 6993]]} + {:process 5 :type :fail :f :txn :value [[:append 4 6993]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 6994]]} + {:process 7 :type :fail :f :txn :value [[:append 3 6992]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 6995]]} + {:process 5 :type :fail :f :txn :value [[:append 2 6994]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 6996]]} + {:process 7 :type :fail :f :txn :value [[:append 4 6995]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 6997]]} + {:process 5 :type :fail :f :txn :value [[:append 3 6996]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 6998]]} + {:process 7 :type :fail :f :txn :value [[:append 6 6997]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 6999]]} + {:process 5 :type :fail :f :txn :value [[:append 1 6998]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7000]]} + {:process 7 :type :fail :f :txn :value [[:append 7 6999]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7000]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7001]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 7002]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7001]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7003]]} + {:process 7 :type :fail :f :txn :value [[:append 1 7002]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 7004]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7003]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7005]]} + {:process 7 :type :fail :f :txn :value [[:append 2 7004]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 7006]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7005]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7007]]} + {:process 7 :type :fail :f :txn :value [[:append 4 7006]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 7008]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7007]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 7008]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7009]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 7010]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7009]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7011]]} + {:process 7 :type :fail :f :txn :value [[:append 7 7010]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 7012]]} + {:process 7 :type :fail :f :txn :value [[:append 0 7012]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 7013]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7011]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7014]]} + {:process 7 :type :fail :f :txn :value [[:append 2 7013]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 7015]]} + {:process 7 :type :fail :f :txn :value [[:append 3 7015]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 7016]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7014]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7017]]} + {:process 7 :type :fail :f :txn :value [[:append 5 7016]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 7018]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7017]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7019]]} + {:process 7 :type :fail :f :txn :value [[:append 6 7018]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 7020]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7019]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7021]]} + {:process 7 :type :fail :f :txn :value [[:append 0 7020]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 7022]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7021]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7023]]} + {:process 7 :type :fail :f :txn :value [[:append 1 7022]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 7024]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7023]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7025]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7025]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7026]]} + {:process 7 :type :fail :f :txn :value [[:append 3 7024]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 7027]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7026]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7028]]} + {:process 7 :type :fail :f :txn :value [[:append 4 7027]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 7029]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7028]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7030]]} + {:process 7 :type :fail :f :txn :value [[:append 6 7029]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 7031]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7030]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7032]]} + {:process 7 :type :fail :f :txn :value [[:append 7 7031]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 7033]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7032]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 7033]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 7034]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7035]]} + {:process 7 :type :fail :f :txn :value [[:append 2 7034]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 7036]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7035]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7037]]} + {:process 7 :type :fail :f :txn :value [[:append 4 7036]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 7038]]} + {:process 7 :type :fail :f :txn :value [[:append 5 7038]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 7039]]} + {:process 7 :type :fail :f :txn :value [[:append 7 7039]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 7040]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7037]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7041]]} + {:process 7 :type :fail :f :txn :value [[:append 0 7040]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 7042]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7041]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7043]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7043]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7044]]} + {:process 7 :type :fail :f :txn :value [[:append 2 7042]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 7045]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7044]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7046]]} + {:process 7 :type :fail :f :txn :value [[:append 3 7045]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 7047]]} + {:process 7 :type :fail :f :txn :value [[:append 5 7047]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 7048]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7046]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 7048]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7049]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 7050]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7049]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7051]]} + {:process 7 :type :fail :f :txn :value [[:append 0 7050]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 7052]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7051]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7053]]} + {:process 7 :type :fail :f :txn :value [[:append 1 7052]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 7054]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7053]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7055]]} + {:process 7 :type :fail :f :txn :value [[:append 3 7054]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 7056]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7055]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7057]]} + {:process 7 :type :fail :f :txn :value [[:append 4 7056]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7057]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7058]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7058]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 7059]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7060]]} + {:process 7 :type :fail :f :txn :value [[:append 6 7059]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 7061]]} + {:process 7 :type :fail :f :txn :value [[:append 7 7061]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7060]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7063]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 7062]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7063]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7064]]} + {:process 7 :type :fail :f :txn :value [[:append 1 7062]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 7065]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7064]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7066]]} + {:process 7 :type :fail :f :txn :value [[:append 2 7065]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 7067]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7066]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7068]]} + {:process 7 :type :fail :f :txn :value [[:append 4 7067]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 7069]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7068]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7070]]} + {:process 7 :type :fail :f :txn :value [[:append 5 7069]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 7071]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7070]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7072]]} + {:process 7 :type :fail :f :txn :value [[:append 7 7071]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 7073]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7072]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7074]]} + {:process 7 :type :fail :f :txn :value [[:append 0 7073]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 7075]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7074]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7076]]} + {:process 7 :type :fail :f :txn :value [[:append 2 7075]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 7077]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7076]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7078]]} + {:process 7 :type :fail :f :txn :value [[:append 3 7077]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 7079]]} + {:process 7 :type :fail :f :txn :value [[:append 5 7079]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 7080]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7078]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 7080]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7081]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 7082]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7081]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7083]]} + {:process 7 :type :fail :f :txn :value [[:append 0 7082]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 7084]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7083]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7085]]} + {:process 7 :type :fail :f :txn :value [[:append 1 7084]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 7086]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7085]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7087]]} + {:process 7 :type :fail :f :txn :value [[:append 3 7086]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 7088]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7087]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7089]]} + {:process 7 :type :fail :f :txn :value [[:append 4 7088]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 7090]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7089]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7091]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7091]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7092]]} + {:process 7 :type :fail :f :txn :value [[:append 6 7090]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 7093]]} + {:process 7 :type :fail :f :txn :value [[:append 7 7093]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 7094]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7092]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7095]]} + {:process 7 :type :fail :f :txn :value [[:append 1 7094]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 7096]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7095]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 7096]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7097]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 7098]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7097]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7099]]} + {:process 7 :type :fail :f :txn :value [[:append 4 7098]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 7100]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7099]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7101]]} + {:process 7 :type :fail :f :txn :value [[:append 5 7100]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 7102]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7101]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7103]]} + {:process 7 :type :fail :f :txn :value [[:append 7 7102]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 7104]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7103]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7105]]} + {:process 7 :type :fail :f :txn :value [[:append 0 7104]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 7106]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7105]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7107]]} + {:process 7 :type :fail :f :txn :value [[:append 2 7106]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 7108]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7107]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7109]]} + {:process 7 :type :fail :f :txn :value [[:append 3 7108]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 7110]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7109]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7111]]} + {:process 7 :type :fail :f :txn :value [[:append 5 7110]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 7112]]} + {:process 7 :type :fail :f :txn :value [[:append 6 7112]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 7113]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7111]]} + {:process 7 :type :fail :f :txn :value [[:append 0 7113]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 7114]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7115]]} + {:process 7 :type :fail :f :txn :value [[:append 1 7114]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 7116]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7115]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7117]]} + {:process 7 :type :fail :f :txn :value [[:append 3 7116]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 7118]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7117]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 7118]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7119]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 7120]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7119]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7121]]} + {:process 7 :type :fail :f :txn :value [[:append 6 7120]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 7122]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7121]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 7122]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7123]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 7124]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7123]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7125]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7125]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7126]]} + {:process 7 :type :fail :f :txn :value [[:append 1 7124]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 7127]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7126]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7128]]} + {:process 7 :type :fail :f :txn :value [[:append 2 7127]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 7129]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7128]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7130]]} + {:process 7 :type :fail :f :txn :value [[:append 4 7129]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 7131]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7130]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7132]]} + {:process 7 :type :fail :f :txn :value [[:append 5 7131]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 7133]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7132]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7134]]} + {:process 7 :type :fail :f :txn :value [[:append 7 7133]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 7135]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7134]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7136]]} + {:process 7 :type :fail :f :txn :value [[:append 0 7135]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 7137]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7136]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7138]]} + {:process 7 :type :fail :f :txn :value [[:append 2 7137]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 7139]]} + {:process 7 :type :fail :f :txn :value [[:append 3 7139]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 7140]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7138]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7141]]} + {:process 7 :type :fail :f :txn :value [[:append 5 7140]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 7142]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7141]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7143]]} + {:process 7 :type :fail :f :txn :value [[:append 6 7142]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 7144]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7143]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7145]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7145]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7146]]} + {:process 7 :type :fail :f :txn :value [[:append 0 7144]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 7147]]} + {:process 7 :type :fail :f :txn :value [[:append 1 7147]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 7148]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7146]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7149]]} + {:process 7 :type :fail :f :txn :value [[:append 3 7148]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 7150]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7149]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7151]]} + {:process 7 :type :fail :f :txn :value [[:append 4 7150]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 7152]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7151]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7153]]} + {:process 7 :type :fail :f :txn :value [[:append 6 7152]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 7154]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7153]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 7154]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7155]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 7156]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7155]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7157]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7157]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7158]]} + {:process 7 :type :fail :f :txn :value [[:append 1 7156]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 7159]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7158]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7160]]} + {:process 7 :type :fail :f :txn :value [[:append 2 7159]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 7161]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7160]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7162]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7162]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7163]]} + {:process 7 :type :fail :f :txn :value [[:append 4 7161]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 7164]]} + {:process 7 :type :fail :f :txn :value [[:append 5 7164]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 7165]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7163]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 7165]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7166]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 7167]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7166]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7168]]} + {:process 7 :type :fail :f :txn :value [[:append 0 7167]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 7169]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7168]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7170]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7170]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7171]]} + {:process 7 :type :fail :f :txn :value [[:append 2 7169]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 7172]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7171]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 7172]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 7174]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7173]]} + {:process 7 :type :fail :f :txn :value [[:append 5 7174]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 7175]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7173]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7176]]} + {:process 7 :type :fail :f :txn :value [[:append 6 7175]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 7177]]} + {:process 7 :type :fail :f :txn :value [[:append 0 7177]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 7178]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7176]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7179]]} + {:process 7 :type :fail :f :txn :value [[:append 1 7178]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 7180]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7179]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7181]]} + {:process 7 :type :fail :f :txn :value [[:append 3 7180]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 7182]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7181]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7183]]} + {:process 7 :type :fail :f :txn :value [[:append 4 7182]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 7184]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7183]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7185]]} + {:process 7 :type :fail :f :txn :value [[:append 6 7184]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 7186]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7185]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7187]]} + {:process 7 :type :fail :f :txn :value [[:append 7 7186]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 7188]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7187]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7189]]} + {:process 7 :type :fail :f :txn :value [[:append 1 7188]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 7190]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7189]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7191]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7191]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7192]]} + {:process 7 :type :fail :f :txn :value [[:append 2 7190]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 7193]]} + {:process 7 :type :fail :f :txn :value [[:append 4 7193]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 7194]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7192]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7195]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7195]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7196]]} + {:process 7 :type :fail :f :txn :value [[:append 5 7194]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 7197]]} + {:process 7 :type :fail :f :txn :value [[:append 7 7197]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 7198]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7196]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 7198]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 7200]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7199]]} + {:process 7 :type :fail :f :txn :value [[:append 2 7200]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 7201]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7199]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7202]]} + {:process 7 :type :fail :f :txn :value [[:append 3 7201]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 7203]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7202]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 7203]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 7205]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7204]]} + {:process 7 :type :fail :f :txn :value [[:append 6 7205]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 7206]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7204]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7207]]} + {:process 7 :type :fail :f :txn :value [[:append 0 7206]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 7208]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7207]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7209]]} + {:process 7 :type :fail :f :txn :value [[:append 1 7208]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 7210]]} + {:process 7 :type :fail :f :txn :value [[:append 3 7210]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 7211]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7209]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7212]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7212]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 7211]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 7214]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7213]]} + {:process 7 :type :fail :f :txn :value [[:append 6 7214]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 7215]]} + {:process 7 :type :fail :f :txn :value [[:append 7 7215]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 7216]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7213]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7217]]} + {:process 7 :type :fail :f :txn :value [[:append 1 7216]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 7218]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7217]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7219]]} + {:process 7 :type :fail :f :txn :value [[:append 2 7218]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 7220]]} + {:process 7 :type :fail :f :txn :value [[:append 4 7220]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 7221]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7219]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7222]]} + {:process 7 :type :fail :f :txn :value [[:append 5 7221]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 7223]]} + {:process 7 :type :fail :f :txn :value [[:append 7 7223]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 7224]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7222]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7225]]} + {:process 7 :type :fail :f :txn :value [[:append 0 7224]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 7226]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7225]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7227]]} + {:process 7 :type :fail :f :txn :value [[:append 2 7226]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 7228]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7227]]} + {:process 7 :type :fail :f :txn :value [[:append 3 7228]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 7229]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7230]]} + {:process 7 :type :fail :f :txn :value [[:append 5 7229]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 7231]]} + {:process 7 :type :fail :f :txn :value [[:append 6 7231]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 7232]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7230]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7233]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7233]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7234]]} + {:process 7 :type :fail :f :txn :value [[:append 0 7232]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 7235]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7234]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7236]]} + {:process 7 :type :fail :f :txn :value [[:append 1 7235]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 7237]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7236]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7238]]} + {:process 7 :type :fail :f :txn :value [[:append 3 7237]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 7239]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7238]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7240]]} + {:process 7 :type :fail :f :txn :value [[:append 4 7239]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 7241]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7240]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7242]]} + {:process 7 :type :fail :f :txn :value [[:append 6 7241]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 7243]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7242]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7244]]} + {:process 7 :type :fail :f :txn :value [[:append 7 7243]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7244]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 7245]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7246]]} + {:process 7 :type :fail :f :txn :value [[:append 1 7245]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 7247]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7246]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7248]]} + {:process 7 :type :fail :f :txn :value [[:append 2 7247]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 7249]]} + {:process 7 :type :fail :f :txn :value [[:append 4 7249]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 7250]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7248]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 7250]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7251]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7251]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7252]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7252]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7253]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7253]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7254]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7254]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7255]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7255]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7256]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7256]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7257]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7257]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7258]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7258]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7259]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7259]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7260]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7260]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7261]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7261]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7262]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7262]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7263]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7263]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7264]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7264]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7265]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7265]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7266]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7266]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7267]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7267]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7268]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7268]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7269]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7269]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7270]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7270]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7271]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7271]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7272]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7272]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7273]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7273]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7274]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7274]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7275]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7275]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7276]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7276]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7277]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7277]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7278]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7278]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7279]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7279]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7280]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7280]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7281]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7281]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7282]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7282]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7283]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7283]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7284]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7284]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7285]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7285]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7286]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7286]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7287]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7287]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7288]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7288]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7289]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7289]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7290]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7290]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7291]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7291]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7292]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7292]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7293]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7293]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7294]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7294]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7295]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7295]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7296]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7296]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7297]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7297]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7298]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7298]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7299]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7299]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7300]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7300]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7301]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7301]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7302]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7302]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7303]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7303]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7304]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7304]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7305]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7305]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7306]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7306]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7307]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7307]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7308]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7308]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7309]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7309]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7310]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7310]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7311]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7311]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7312]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7312]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7313]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7313]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7314]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7314]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 7315]]} + {:process 5 :type :fail :f :txn :value [[:append 5 7315]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7316]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7316]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 7317]]} + {:process 5 :type :fail :f :txn :value [[:append 0 7317]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7318]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7318]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 7319]]} + {:process 5 :type :fail :f :txn :value [[:append 7 7319]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7320]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7320]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 7321]]} + {:process 5 :type :fail :f :txn :value [[:append 2 7321]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 7322]]} + {:process 5 :type :fail :f :txn :value [[:append 3 7322]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 7323]]} + {:process 5 :type :fail :f :txn :value [[:append 1 7323]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 7324]]} + {:process 5 :type :fail :f :txn :value [[:append 6 7324]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 7325]]} + {:process 5 :type :fail :f :txn :value [[:append 4 7325]]} + {:process 1 :type :fail :f :txn :value [[:append 2 470]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7326]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7326]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7327]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7327]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7328]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7328]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7329]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7329]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7330]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7330]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7331]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7331]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7332]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7332]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7333]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7333]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7334]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7334]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7335]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7335]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7336]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7336]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7337]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7337]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7338]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7338]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7339]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7339]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7340]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7340]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7341]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7341]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7342]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7342]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7343]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7343]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7344]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7344]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7345]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7345]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7346]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7346]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7347]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7347]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7348]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7348]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7349]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7349]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7350]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7350]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7351]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7351]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7352]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7352]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7353]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7353]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7354]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7354]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7355]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7355]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7356]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7356]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7357]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7357]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7358]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7358]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7359]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7359]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7360]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7360]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7361]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7361]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7362]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7362]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7363]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7363]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7364]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7364]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7365]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7365]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7366]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7366]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7367]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7367]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7368]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7368]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7369]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7369]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7370]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7370]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7371]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7371]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7372]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7372]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7373]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7373]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7374]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7374]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7375]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7375]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7376]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7376]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7377]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7377]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7378]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7378]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7379]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7379]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7380]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7380]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7381]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7381]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7382]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7382]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7383]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7383]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7384]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7384]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7385]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7385]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7386]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7386]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7387]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7387]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7388]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7388]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7389]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7389]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7390]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7390]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7391]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7391]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7392]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7392]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7393]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7393]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7394]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7394]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7395]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7395]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7396]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7396]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7397]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7397]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7398]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7398]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7399]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7399]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7400]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7400]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7401]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7401]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7402]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7402]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7403]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7403]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7404]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7404]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7405]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7405]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7406]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7406]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7407]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7407]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7408]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7408]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7409]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7409]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7410]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7410]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7411]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7411]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7412]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7412]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7413]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7413]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7414]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7414]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7415]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7415]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7416]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7416]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7417]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7417]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7418]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7418]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7419]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7419]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7420]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7420]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7421]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7421]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7422]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7422]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7423]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7423]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7424]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7424]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7425]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7425]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7426]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7426]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7427]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7427]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7428]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7428]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7429]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7429]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7430]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7430]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7431]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7431]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7432]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7432]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7433]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7433]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7434]]} + {:process 3 :type :info :f :txn :value [[:append 5 468]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 7435]]} + {:process 1 :type :ok :f :txn :value [[:append 6 7434]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7436]]} + {:process 3 :type :ok :f :txn :value [[:append 4 7435]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 5 7436]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 7437]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373 407 408 409 437 444 448 447 449 454 458]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7438]]} + {:process 3 :type :ok :f :txn :value [[:append 2 7437]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 7439]]} + {:process 1 :type :ok :f :txn :value [[:append 7 7438]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7440]]} + {:process 3 :type :ok :f :txn :value [[:append 1 7439]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 2 7440]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373 407 408 409 437 444 448 447 449 454 458]]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 7441]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7442]]} + {:process 3 :type :ok :f :txn :value [[:append 7 7441]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 7443]]} + {:process 1 :type :ok :f :txn :value [[:append 4 7442]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7444]]} + {:process 3 :type :ok :f :txn :value [[:append 6 7443]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 3 7444]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 7445]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7446]]} + {:process 3 :type :ok :f :txn :value [[:append 4 7445]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 7447]]} + {:process 1 :type :ok :f :txn :value [[:append 5 7446]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7448]]} + {:process 3 :type :ok :f :txn :value [[:append 3 7447]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 7448]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 7449]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405 411 412 419 431 441 453 450 457 460 7438 7441]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7450]]} + {:process 3 :type :ok :f :txn :value [[:append 1 7449]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 7451]]} + {:process 1 :type :ok :f :txn :value [[:append 2 7450]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7452]]} + {:process 3 :type :ok :f :txn :value [[:append 0 7451]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 1 7452]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405 411 412 419 431 441 453 450 457 460 7438 7441]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 7453]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7454]]} + {:process 3 :type :ok :f :txn :value [[:append 6 7453]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 7455]]} + {:process 1 :type :ok :f :txn :value [[:append 3 7454]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7456]]} + {:process 3 :type :ok :f :txn :value [[:append 5 7455]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 6 7456]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 7457]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7458]]} + {:process 3 :type :ok :f :txn :value [[:append 3 7457]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 7459]]} + {:process 1 :type :ok :f :txn :value [[:append 0 7458]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7460]]} + {:process 3 :type :ok :f :txn :value [[:append 2 7459]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 7 7460]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 7461]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7462]]} + {:process 3 :type :ok :f :txn :value [[:append 0 7461]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 7463]]} + {:process 1 :type :ok :f :txn :value [[:append 1 7462]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7464]]} + {:process 3 :type :ok :f :txn :value [[:append 7 7463]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 4 7464]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 7465]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7466]]} + {:process 3 :type :ok :f :txn :value [[:append 5 7465]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 7467]]} + {:process 1 :type :ok :f :txn :value [[:append 6 7466]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7468]]} + {:process 3 :type :ok :f :txn :value [[:append 4 7467]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 5 7468]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 7469]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373 407 408 409 437 444 448 447 449 454 458 7448 7451 7458 7461]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7470]]} + {:process 3 :type :ok :f :txn :value [[:append 2 7469]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 7471]]} + {:process 1 :type :ok :f :txn :value [[:append 7 7470]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7472]]} + {:process 3 :type :ok :f :txn :value [[:append 1 7471]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 2 7472]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373 407 408 409 437 444 448 447 449 454 458 7448 7451 7458 7461]]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 7473]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7474]]} + {:process 3 :type :ok :f :txn :value [[:append 7 7473]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 7475]]} + {:process 1 :type :ok :f :txn :value [[:append 4 7474]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7476]]} + {:process 3 :type :ok :f :txn :value [[:append 6 7475]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 3 7476]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 7477]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7478]]} + {:process 3 :type :ok :f :txn :value [[:append 4 7477]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 7479]]} + {:process 1 :type :ok :f :txn :value [[:append 5 7478]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7480]]} + {:process 3 :type :ok :f :txn :value [[:append 3 7479]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 7480]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 7481]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405 411 412 419 431 441 453 450 457 460 7438 7441 7460 7463 7470 7473]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7482]]} + {:process 3 :type :ok :f :txn :value [[:append 1 7481]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 7483]]} + {:process 1 :type :ok :f :txn :value [[:append 2 7482]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7484]]} + {:process 3 :type :ok :f :txn :value [[:append 0 7483]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405 411 412 419 431 441 453 450 457 460 7438 7441 7460 7463 7470 7473]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 7485]]} + {:process 1 :type :ok :f :txn :value [[:append 1 7484]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7486]]} + {:process 3 :type :ok :f :txn :value [[:append 6 7485]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 7487]]} + {:process 1 :type :ok :f :txn :value [[:append 3 7486]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7488]]} + {:process 3 :type :ok :f :txn :value [[:append 5 7487]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 7489]]} + {:process 1 :type :ok :f :txn :value [[:append 6 7488]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7490]]} + {:process 3 :type :ok :f :txn :value [[:append 3 7489]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 7491]]} + {:process 1 :type :ok :f :txn :value [[:append 0 7490]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7492]]} + {:process 3 :type :ok :f :txn :value [[:append 2 7491]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 7493]]} + {:process 1 :type :ok :f :txn :value [[:append 7 7492]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7494]]} + {:process 3 :type :ok :f :txn :value [[:append 0 7493]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 7495]]} + {:process 1 :type :ok :f :txn :value [[:append 1 7494]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7496]]} + {:process 3 :type :ok :f :txn :value [[:append 7 7495]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 7497]]} + {:process 1 :type :ok :f :txn :value [[:append 4 7496]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7498]]} + {:process 3 :type :ok :f :txn :value [[:append 5 7497]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 7499]]} + {:process 1 :type :ok :f :txn :value [[:append 6 7498]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7500]]} + {:process 3 :type :ok :f :txn :value [[:append 4 7499]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 7501]]} + {:process 1 :type :ok :f :txn :value [[:append 5 7500]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373 407 408 409 437 444 448 447 449 454 458 7448 7451 7458 7461 7480 7483 7490 7493]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7502]]} + {:process 3 :type :ok :f :txn :value [[:append 2 7501]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 7503]]} + {:process 1 :type :ok :f :txn :value [[:append 7 7502]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7504]]} + {:process 3 :type :ok :f :txn :value [[:append 1 7503]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373 407 408 409 437 444 448 447 449 454 458 7448 7451 7458 7461 7480 7483 7490 7493]]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 7505]]} + {:process 1 :type :ok :f :txn :value [[:append 2 7504]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7506]]} + {:process 3 :type :ok :f :txn :value [[:append 7 7505]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 7507]]} + {:process 1 :type :ok :f :txn :value [[:append 4 7506]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7508]]} + {:process 3 :type :ok :f :txn :value [[:append 6 7507]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 7509]]} + {:process 1 :type :ok :f :txn :value [[:append 3 7508]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7510]]} + {:process 3 :type :ok :f :txn :value [[:append 4 7509]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 7511]]} + {:process 1 :type :ok :f :txn :value [[:append 5 7510]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7512]]} + {:process 3 :type :ok :f :txn :value [[:append 3 7511]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 7513]]} + {:process 1 :type :ok :f :txn :value [[:append 0 7512]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405 411 412 419 431 441 453 450 457 460 7438 7441 7460 7463 7470 7473 7492 7495 7502 7505]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7514]]} + {:process 3 :type :ok :f :txn :value [[:append 1 7513]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 7515]]} + {:process 1 :type :ok :f :txn :value [[:append 2 7514]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7516]]} + {:process 3 :type :ok :f :txn :value [[:append 0 7515]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405 411 412 419 431 441 453 450 457 460 7438 7441 7460 7463 7470 7473 7492 7495 7502 7505]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 7517]]} + {:process 1 :type :ok :f :txn :value [[:append 1 7516]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7518]]} + {:process 3 :type :ok :f :txn :value [[:append 6 7517]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 7519]]} + {:process 1 :type :ok :f :txn :value [[:append 3 7518]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7520]]} + {:process 3 :type :ok :f :txn :value [[:append 5 7519]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 7521]]} + {:process 1 :type :ok :f :txn :value [[:append 6 7520]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7522]]} + {:process 3 :type :ok :f :txn :value [[:append 3 7521]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 7523]]} + {:process 1 :type :ok :f :txn :value [[:append 0 7522]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7524]]} + {:process 3 :type :ok :f :txn :value [[:append 2 7523]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 7525]]} + {:process 1 :type :ok :f :txn :value [[:append 7 7524]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7526]]} + {:process 3 :type :info :f :txn :value [[:append 0 7525]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 7527]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7526]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7528]]} + {:process 3 :type :info :f :txn :value [[:append 7 7527]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :info :f :txn :value [[:append 4 7528]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 7529]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7530]]} + {:process 3 :type :ok :f :txn :value [[:append 5 7529]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 7531]]} + {:process 1 :type :ok :f :txn :value [[:append 6 7530]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7532]]} + {:process 3 :type :ok :f :txn :value [[:append 4 7531]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 5 7532]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 7533]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7534]]} + {:process 3 :type :ok :f :txn :value [[:append 2 7533]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 7535]]} + {:process 1 :type :ok :f :txn :value [[:append 7 7534]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7536]]} + {:process 3 :type :ok :f :txn :value [[:append 1 7535]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 2 7536]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 7537]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516 7535]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7538]]} + {:process 3 :type :ok :f :txn :value [[:append 7 7537]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 7539]]} + {:process 1 :type :ok :f :txn :value [[:append 4 7538]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7540]]} + {:process 3 :type :ok :f :txn :value [[:append 6 7539]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 3 7540]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519 7529 7532]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 7541]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520 7530 7539]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7542]]} + {:process 3 :type :ok :f :txn :value [[:append 4 7541]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 7543]]} + {:process 1 :type :ok :f :txn :value [[:append 5 7542]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7544]]} + {:process 3 :type :ok :f :txn :value [[:append 3 7543]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 7544]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 7545]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7546]]} + {:process 3 :type :ok :f :txn :value [[:append 1 7545]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 7547]]} + {:process 1 :type :ok :f :txn :value [[:append 2 7546]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7548]]} + {:process 3 :type :ok :f :txn :value [[:append 0 7547]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 1 7548]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 7549]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509 7531 7538 7541]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7550]]} + {:process 3 :type :ok :f :txn :value [[:append 6 7549]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 7551]]} + {:process 1 :type :ok :f :txn :value [[:append 3 7550]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7552]]} + {:process 3 :type :ok :f :txn :value [[:append 5 7551]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 6 7552]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509 7531 7538 7541]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 7553]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519 7529 7532 7542 7551]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7554]]} + {:process 3 :type :ok :f :txn :value [[:append 3 7553]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 7555]]} + {:process 1 :type :ok :f :txn :value [[:append 0 7554]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7556]]} + {:process 3 :type :ok :f :txn :value [[:append 2 7555]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 7 7556]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516 7535 7545 7548]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 7557]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7558]]} + {:process 3 :type :ok :f :txn :value [[:append 0 7557]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 7559]]} + {:process 1 :type :ok :f :txn :value [[:append 1 7558]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7560]]} + {:process 3 :type :ok :f :txn :value [[:append 7 7559]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 4 7560]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520 7530 7539 7549 7552]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 7561]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521 7540 7543 7550 7553]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7562]]} + {:process 3 :type :ok :f :txn :value [[:append 5 7561]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 7563]]} + {:process 1 :type :ok :f :txn :value [[:append 6 7562]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7564]]} + {:process 3 :type :ok :f :txn :value [[:append 4 7563]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 5 7564]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521 7540 7543 7550 7553]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 7565]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7566]]} + {:process 3 :type :ok :f :txn :value [[:append 2 7565]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 7567]]} + {:process 1 :type :ok :f :txn :value [[:append 7 7566]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7568]]} + {:process 3 :type :ok :f :txn :value [[:append 1 7567]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 2 7568]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 7569]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516 7535 7545 7548 7558 7567]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7570]]} + {:process 3 :type :ok :f :txn :value [[:append 7 7569]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 7571]]} + {:process 1 :type :ok :f :txn :value [[:append 4 7570]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7572]]} + {:process 3 :type :ok :f :txn :value [[:append 6 7571]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 3 7572]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519 7529 7532 7542 7551 7561 7564]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 7573]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520 7530 7539 7549 7552 7562 7571]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7574]]} + {:process 3 :type :ok :f :txn :value [[:append 4 7573]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 7575]]} + {:process 1 :type :ok :f :txn :value [[:append 5 7574]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7576]]} + {:process 3 :type :ok :f :txn :value [[:append 3 7575]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 7576]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 7577]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7578]]} + {:process 3 :type :ok :f :txn :value [[:append 1 7577]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 7579]]} + {:process 1 :type :ok :f :txn :value [[:append 2 7578]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7580]]} + {:process 3 :type :ok :f :txn :value [[:append 0 7579]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 1 7580]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 7581]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509 7531 7538 7541 7560 7563 7570 7573]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7582]]} + {:process 3 :type :ok :f :txn :value [[:append 6 7581]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 7583]]} + {:process 1 :type :ok :f :txn :value [[:append 3 7582]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7584]]} + {:process 3 :type :ok :f :txn :value [[:append 5 7583]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 6 7584]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509 7531 7538 7541 7560 7563 7570 7573]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 7585]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519 7529 7532 7542 7551 7561 7564 7574 7583]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7586]]} + {:process 3 :type :ok :f :txn :value [[:append 3 7585]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 7587]]} + {:process 1 :type :ok :f :txn :value [[:append 0 7586]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7588]]} + {:process 3 :type :ok :f :txn :value [[:append 2 7587]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 7 7588]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516 7535 7545 7548 7558 7567 7577 7580]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 7589]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7590]]} + {:process 3 :type :ok :f :txn :value [[:append 0 7589]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 7591]]} + {:process 1 :type :ok :f :txn :value [[:append 1 7590]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7592]]} + {:process 3 :type :ok :f :txn :value [[:append 7 7591]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 4 7592]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520 7530 7539 7549 7552 7562 7571 7581 7584]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 7593]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521 7540 7543 7550 7553 7572 7575 7582 7585]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7594]]} + {:process 3 :type :ok :f :txn :value [[:append 5 7593]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 7595]]} + {:process 1 :type :ok :f :txn :value [[:append 6 7594]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7596]]} + {:process 3 :type :ok :f :txn :value [[:append 4 7595]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 5 7596]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521 7540 7543 7550 7553 7572 7575 7582 7585]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 7597]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7598]]} + {:process 3 :type :ok :f :txn :value [[:append 2 7597]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 7599]]} + {:process 1 :type :ok :f :txn :value [[:append 7 7598]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7600]]} + {:process 3 :type :ok :f :txn :value [[:append 1 7599]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 2 7600]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 7601]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516 7535 7545 7548 7558 7567 7577 7580 7590 7599]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7602]]} + {:process 3 :type :ok :f :txn :value [[:append 7 7601]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 7603]]} + {:process 1 :type :ok :f :txn :value [[:append 4 7602]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7604]]} + {:process 3 :type :ok :f :txn :value [[:append 6 7603]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 3 7604]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519 7529 7532 7542 7551 7561 7564 7574 7583 7593 7596]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 7605]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520 7530 7539 7549 7552 7562 7571 7581 7584 7594 7603]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7606]]} + {:process 3 :type :ok :f :txn :value [[:append 4 7605]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 7607]]} + {:process 1 :type :ok :f :txn :value [[:append 5 7606]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7608]]} + {:process 3 :type :ok :f :txn :value [[:append 3 7607]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 7608]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 7609]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7610]]} + {:process 3 :type :ok :f :txn :value [[:append 1 7609]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 7611]]} + {:process 1 :type :ok :f :txn :value [[:append 2 7610]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7612]]} + {:process 3 :type :ok :f :txn :value [[:append 0 7611]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 1 7612]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 7613]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509 7531 7538 7541 7560 7563 7570 7573 7592 7595 7602 7605]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7614]]} + {:process 3 :type :ok :f :txn :value [[:append 6 7613]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 7615]]} + {:process 1 :type :ok :f :txn :value [[:append 3 7614]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7616]]} + {:process 3 :type :ok :f :txn :value [[:append 5 7615]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 6 7616]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509 7531 7538 7541 7560 7563 7570 7573 7592 7595 7602 7605]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 7617]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519 7529 7532 7542 7551 7561 7564 7574 7583 7593 7596 7606 7615]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7618]]} + {:process 3 :type :ok :f :txn :value [[:append 3 7617]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 7619]]} + {:process 1 :type :ok :f :txn :value [[:append 0 7618]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7620]]} + {:process 3 :type :ok :f :txn :value [[:append 2 7619]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 7 7620]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516 7535 7545 7548 7558 7567 7577 7580 7590 7599 7609 7612]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 7621]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7622]]} + {:process 3 :type :ok :f :txn :value [[:append 0 7621]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 7623]]} + {:process 1 :type :ok :f :txn :value [[:append 1 7622]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7624]]} + {:process 3 :type :ok :f :txn :value [[:append 7 7623]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 4 7624]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520 7530 7539 7549 7552 7562 7571 7581 7584 7594 7603 7613 7616]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 7625]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521 7540 7543 7550 7553 7572 7575 7582 7585 7604 7607 7614 7617]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7626]]} + {:process 3 :type :ok :f :txn :value [[:append 5 7625]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 7627]]} + {:process 1 :type :ok :f :txn :value [[:append 6 7626]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7628]]} + {:process 3 :type :ok :f :txn :value [[:append 4 7627]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 5 7628]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521 7540 7543 7550 7553 7572 7575 7582 7585 7604 7607 7614 7617]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 7629]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7630]]} + {:process 3 :type :ok :f :txn :value [[:append 2 7629]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 7631]]} + {:process 1 :type :ok :f :txn :value [[:append 7 7630]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7632]]} + {:process 3 :type :ok :f :txn :value [[:append 1 7631]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 2 7632]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 7633]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516 7535 7545 7548 7558 7567 7577 7580 7590 7599 7609 7612 7622 7631]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7634]]} + {:process 3 :type :ok :f :txn :value [[:append 7 7633]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 7635]]} + {:process 1 :type :ok :f :txn :value [[:append 4 7634]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7636]]} + {:process 3 :type :ok :f :txn :value [[:append 6 7635]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 3 7636]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519 7529 7532 7542 7551 7561 7564 7574 7583 7593 7596 7606 7615 7625 7628]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 7637]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520 7530 7539 7549 7552 7562 7571 7581 7584 7594 7603 7613 7616 7626 7635]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7638]]} + {:process 3 :type :ok :f :txn :value [[:append 4 7637]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 7639]]} + {:process 1 :type :ok :f :txn :value [[:append 5 7638]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7640]]} + {:process 3 :type :ok :f :txn :value [[:append 3 7639]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 7640]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 7641]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7642]]} + {:process 3 :type :ok :f :txn :value [[:append 1 7641]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 7643]]} + {:process 1 :type :ok :f :txn :value [[:append 2 7642]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7644]]} + {:process 3 :type :ok :f :txn :value [[:append 0 7643]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 1 7644]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 7645]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509 7531 7538 7541 7560 7563 7570 7573 7592 7595 7602 7605 7624 7627 7634 7637]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7646]]} + {:process 3 :type :ok :f :txn :value [[:append 6 7645]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 7647]]} + {:process 1 :type :ok :f :txn :value [[:append 3 7646]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7648]]} + {:process 3 :type :ok :f :txn :value [[:append 5 7647]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 6 7648]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509 7531 7538 7541 7560 7563 7570 7573 7592 7595 7602 7605 7624 7627 7634 7637]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 7649]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519 7529 7532 7542 7551 7561 7564 7574 7583 7593 7596 7606 7615 7625 7628 7638 7647]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7650]]} + {:process 3 :type :ok :f :txn :value [[:append 3 7649]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 7651]]} + {:process 1 :type :ok :f :txn :value [[:append 0 7650]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7652]]} + {:process 3 :type :ok :f :txn :value [[:append 2 7651]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 7 7652]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516 7535 7545 7548 7558 7567 7577 7580 7590 7599 7609 7612 7622 7631 7641 7644]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 7653]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7654]]} + {:process 3 :type :ok :f :txn :value [[:append 0 7653]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 7655]]} + {:process 1 :type :ok :f :txn :value [[:append 1 7654]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7656]]} + {:process 3 :type :ok :f :txn :value [[:append 7 7655]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 4 7656]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520 7530 7539 7549 7552 7562 7571 7581 7584 7594 7603 7613 7616 7626 7635 7645 7648]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 7657]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521 7540 7543 7550 7553 7572 7575 7582 7585 7604 7607 7614 7617 7636 7639 7646 7649]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7658]]} + {:process 3 :type :ok :f :txn :value [[:append 5 7657]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 7659]]} + {:process 1 :type :ok :f :txn :value [[:append 6 7658]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7660]]} + {:process 3 :type :ok :f :txn :value [[:append 4 7659]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 5 7660]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521 7540 7543 7550 7553 7572 7575 7582 7585 7604 7607 7614 7617 7636 7639 7646 7649]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 7661]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7662]]} + {:process 3 :type :ok :f :txn :value [[:append 2 7661]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 7663]]} + {:process 1 :type :ok :f :txn :value [[:append 7 7662]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7664]]} + {:process 3 :type :ok :f :txn :value [[:append 1 7663]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 2 7664]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 7665]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516 7535 7545 7548 7558 7567 7577 7580 7590 7599 7609 7612 7622 7631 7641 7644 7654 7663]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7666]]} + {:process 3 :type :ok :f :txn :value [[:append 7 7665]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 7667]]} + {:process 1 :type :ok :f :txn :value [[:append 4 7666]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7668]]} + {:process 3 :type :ok :f :txn :value [[:append 6 7667]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 3 7668]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519 7529 7532 7542 7551 7561 7564 7574 7583 7593 7596 7606 7615 7625 7628 7638 7647 7657 7660]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 7669]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520 7530 7539 7549 7552 7562 7571 7581 7584 7594 7603 7613 7616 7626 7635 7645 7648 7658 7667]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7670]]} + {:process 3 :type :ok :f :txn :value [[:append 4 7669]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 7671]]} + {:process 1 :type :ok :f :txn :value [[:append 5 7670]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7672]]} + {:process 3 :type :ok :f :txn :value [[:append 3 7671]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 7672]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 7673]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7674]]} + {:process 3 :type :ok :f :txn :value [[:append 1 7673]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 7675]]} + {:process 1 :type :ok :f :txn :value [[:append 2 7674]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7676]]} + {:process 3 :type :ok :f :txn :value [[:append 0 7675]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 1 7676]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7677]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7677]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7678]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7678]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7679]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7679]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7680]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7680]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7681]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7681]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7682]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7682]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7683]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7683]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7684]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7684]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7685]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7685]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7686]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7686]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7687]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7687]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7688]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7688]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7689]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7689]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7690]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7690]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7691]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7691]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7692]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7692]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7693]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7693]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7694]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7694]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7695]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7695]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7696]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7696]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7697]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7697]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7698]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7698]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7699]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7699]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7700]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7700]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7701]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7701]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7702]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7702]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7703]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7703]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7704]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7704]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7705]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7705]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7706]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7706]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7707]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7707]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7708]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7708]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7709]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7709]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7710]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7710]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7711]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7711]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7712]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7712]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7713]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7713]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7714]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7714]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7715]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7715]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7716]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7716]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7717]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7717]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7718]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7718]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7719]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7719]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7720]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7720]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7721]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7721]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7722]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7722]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7723]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7723]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7724]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7724]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7725]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7725]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7726]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7726]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7727]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7727]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7728]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7728]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7729]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7729]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7730]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7730]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7731]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7731]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7732]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7732]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7733]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7733]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7734]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7734]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7735]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7735]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7736]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7736]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7737]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7737]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7738]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7738]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7739]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7739]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7740]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7740]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7741]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7741]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7742]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7742]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7743]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7743]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7744]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7744]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7745]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7745]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7746]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7746]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7747]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7747]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7748]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7748]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7749]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7749]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7750]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7750]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7751]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7751]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7752]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7752]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7753]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7753]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7754]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7754]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7755]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7755]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7756]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7756]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7757]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7757]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7758]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7758]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7759]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7759]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7760]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7760]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7761]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7761]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7762]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7762]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7763]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7763]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7764]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7764]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7765]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7765]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7766]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7766]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7767]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7767]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7768]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7768]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7769]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7769]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7770]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7770]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7771]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7771]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7772]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7772]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7773]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7773]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7774]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7774]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7775]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7775]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7776]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7776]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7777]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7777]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7778]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7778]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7779]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7779]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7780]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7780]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7781]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7781]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7782]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7782]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7783]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7783]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7784]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7784]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7785]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 7786]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7785]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7787]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7787]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7788]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7788]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7789]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7789]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7790]]} + {:process 3 :type :fail :f :txn :value [[:append 6 7786]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 7791]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7790]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7792]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7792]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7793]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7793]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7794]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7794]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7795]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7795]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7796]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7796]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7797]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7797]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7798]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7798]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7799]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7799]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7800]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7800]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7801]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7801]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7802]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7802]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7803]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7803]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7804]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7804]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7805]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7805]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7806]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7806]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7807]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7807]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7808]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7808]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7809]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7809]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7810]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7810]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7811]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7811]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7812]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7812]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7813]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7813]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7814]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7814]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7815]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7815]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7816]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7816]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7817]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7817]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7818]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7818]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7819]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7819]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7820]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7820]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7821]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7821]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7822]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7822]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7823]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7823]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7824]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7824]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7825]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7825]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7826]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7826]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7827]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7827]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7828]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7828]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7829]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7829]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7830]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7830]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7831]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7831]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7832]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7832]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7833]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7833]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7834]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7834]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7835]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7835]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7836]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7836]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7837]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7837]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7838]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7838]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7839]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7839]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7840]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7840]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7841]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7841]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7842]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7842]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7843]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7843]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7844]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7844]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7845]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7845]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7846]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7846]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7847]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7847]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7848]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7848]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7849]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7849]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7850]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7850]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7851]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7851]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7852]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7852]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7853]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7853]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7854]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7854]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7855]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7855]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7856]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7856]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7857]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7857]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7858]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7858]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7859]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7859]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7860]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7860]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7861]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7861]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7862]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7862]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7863]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7863]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7864]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7864]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7865]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7865]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7866]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7866]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7867]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7867]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7868]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7868]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7869]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7869]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7870]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7870]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7871]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7871]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7872]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7872]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7873]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7873]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7874]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7874]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7875]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7875]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7876]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7876]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7877]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7877]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7878]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7878]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7879]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7879]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7880]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7880]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7881]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7881]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7882]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7882]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7883]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7883]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7884]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7884]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7885]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7885]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7886]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7886]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7887]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7887]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7888]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7888]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7889]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7889]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7890]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7890]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7891]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7891]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7892]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7892]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7893]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7893]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7894]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7894]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7895]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7895]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7896]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7896]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7897]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7897]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7898]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7898]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7899]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7899]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7900]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7900]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7901]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7901]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7902]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7902]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7903]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7903]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7904]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7904]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7905]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7905]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7906]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7906]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7907]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7907]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7908]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7908]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7909]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7909]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7910]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7910]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7911]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7911]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7912]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7912]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7913]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7913]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7914]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7914]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7915]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7915]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7916]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7916]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7917]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7917]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7918]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7918]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7919]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7919]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7920]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7920]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7921]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7921]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7922]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7922]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7923]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7923]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7924]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7924]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7925]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7925]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7926]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7926]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7927]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7927]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7928]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7928]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7929]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7929]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7930]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7930]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7931]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7931]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7932]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7932]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7933]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7933]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7934]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7934]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7935]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7935]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7936]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7936]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7937]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7937]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7938]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7938]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7939]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7939]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7940]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7940]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7941]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7941]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7942]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7942]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7943]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7943]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7944]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7944]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7945]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7945]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7946]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7946]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7947]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7947]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7948]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7948]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7949]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7949]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7950]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7950]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7951]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7951]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7952]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7952]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7953]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7953]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7954]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7954]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7955]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7955]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7956]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7956]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7957]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7957]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7958]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7958]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7959]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7959]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7960]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7960]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7961]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7961]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7962]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7962]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7963]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7963]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7964]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7964]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7965]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7965]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7966]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7966]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7967]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7967]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7968]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7968]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7969]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7969]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7970]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7970]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7971]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7971]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7972]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7972]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7973]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7973]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7974]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7974]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7975]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7975]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7976]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7976]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7977]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7977]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7978]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7978]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7979]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7979]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7980]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7980]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7981]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7981]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7982]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7982]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7983]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7983]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7984]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7984]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7985]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7985]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7986]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7986]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7987]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7987]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7988]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7988]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 7989]]} + {:process 1 :type :fail :f :txn :value [[:append 6 7989]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7990]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7990]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 7991]]} + {:process 1 :type :fail :f :txn :value [[:append 7 7991]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7992]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7992]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 7993]]} + {:process 1 :type :fail :f :txn :value [[:append 4 7993]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7994]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7994]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 7995]]} + {:process 1 :type :fail :f :txn :value [[:append 5 7995]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 7996]]} + {:process 1 :type :fail :f :txn :value [[:append 0 7996]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 7997]]} + {:process 1 :type :fail :f :txn :value [[:append 2 7997]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 7998]]} + {:process 1 :type :fail :f :txn :value [[:append 1 7998]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 7999]]} + {:process 1 :type :fail :f :txn :value [[:append 3 7999]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8000]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8000]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8001]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8001]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8002]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8002]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8003]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8003]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8004]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8004]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8005]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8005]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8006]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8006]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8007]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8007]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8008]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8008]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8009]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8009]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8010]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8010]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8011]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8011]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8012]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8012]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8013]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8013]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8014]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8014]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8015]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8015]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8016]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8016]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8017]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8017]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8018]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8018]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8019]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8019]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8020]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8020]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8021]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8021]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8022]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8022]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8023]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8023]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8024]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8024]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8025]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8025]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8026]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8026]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8027]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8027]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8028]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8028]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8029]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8029]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8030]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8030]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8031]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8031]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8032]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8032]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8033]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8033]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8034]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8034]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8035]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8035]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8036]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8036]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8037]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8037]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8038]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8038]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8039]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8039]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8040]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8040]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8041]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8041]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8042]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8042]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8043]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8043]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8044]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8044]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8045]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8045]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8046]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8046]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8047]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8047]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8048]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8048]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8049]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8049]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8050]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8050]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8051]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8051]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8052]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8052]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8053]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8053]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8054]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8054]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8055]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8055]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8056]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8056]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8057]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8057]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8058]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8058]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8059]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8059]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8060]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8060]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8061]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8061]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8062]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8062]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8063]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8063]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8064]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8064]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8065]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8065]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8066]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8066]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8067]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8067]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8068]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8068]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8069]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8069]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8070]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8070]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8071]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8071]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8072]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8072]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8073]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8073]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8074]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8074]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8075]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8075]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8076]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8076]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8077]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8077]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8078]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8078]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8079]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8079]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8080]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8080]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8081]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8081]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8082]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8082]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8083]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8083]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8084]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8084]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8085]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8085]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8086]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8086]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8087]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8087]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8088]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8088]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8089]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8089]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8090]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8090]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8091]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8091]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8092]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8092]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8093]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8093]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8094]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8094]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8095]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8095]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8096]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8096]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8097]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8097]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8098]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8098]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8099]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8099]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8100]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8100]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8101]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8101]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8102]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8102]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8103]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8103]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8104]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8104]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8105]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8105]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8106]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8106]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8107]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8107]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8108]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8108]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8109]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8109]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8110]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8110]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8111]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8111]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8112]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8112]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8113]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8113]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8114]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8114]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8115]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8115]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8116]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8116]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8117]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8117]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8118]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8118]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8119]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8119]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8120]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8120]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8121]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8121]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8122]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8122]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8123]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8123]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8124]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8124]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8125]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8125]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8126]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8126]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8127]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8127]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8128]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8128]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8129]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8129]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8130]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8130]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8131]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8131]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8132]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8132]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8133]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8133]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8134]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8134]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8135]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8135]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8136]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8136]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8137]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8137]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8138]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8138]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8139]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8139]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8140]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8140]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 7791]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8141]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8141]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8142]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8143]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8142]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8144]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8144]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8145]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8145]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8146]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8146]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8147]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8147]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8148]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8148]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8149]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8149]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8150]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8150]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8151]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8151]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8152]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8152]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8153]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8153]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8154]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8154]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8155]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8155]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8156]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8156]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8157]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8157]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8158]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8158]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8159]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8159]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8160]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8160]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8161]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8161]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8162]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8162]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8163]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8163]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8164]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8164]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8165]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8165]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8166]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8166]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8167]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8167]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8168]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8168]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8169]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8169]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8170]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8170]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8171]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8171]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8172]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8172]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8173]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8173]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8174]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8174]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8175]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8175]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8176]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8176]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8177]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8177]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8178]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8178]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8179]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8179]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8180]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8180]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8181]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8181]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8182]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8182]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8183]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8183]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8184]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8184]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8185]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8185]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8186]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8186]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8187]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8187]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8188]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8188]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8189]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8189]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8190]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8190]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8191]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8191]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8192]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8192]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8193]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8193]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8194]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8194]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8195]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8195]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8196]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8196]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8197]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8197]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8198]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8198]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8199]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8199]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8200]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8200]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8201]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8201]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8202]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8202]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8203]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8203]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8204]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8204]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8205]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8205]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8206]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8206]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8207]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8207]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8208]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8208]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8209]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8209]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8210]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8210]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8211]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8211]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8212]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8212]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8213]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8213]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8214]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8214]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8215]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8215]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8216]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8216]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8217]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8217]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8218]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8218]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8219]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8219]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8220]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8220]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8221]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8221]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8222]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8222]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8223]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8223]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8224]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8224]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8225]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8225]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8226]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8226]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8227]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8227]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8228]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8228]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8229]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8229]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8230]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8230]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8231]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8231]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8232]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8232]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8233]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8233]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8234]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8234]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8235]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8235]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8236]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8236]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8237]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8237]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8238]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8238]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8239]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8239]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8240]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8240]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8241]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8241]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8242]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8242]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8243]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8243]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8244]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8244]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8245]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8245]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8246]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8246]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8247]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8247]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8248]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8248]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8249]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8249]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8250]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8250]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8251]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8251]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8252]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8252]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8253]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8253]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8254]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8254]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8255]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8255]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8256]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8256]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8257]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8257]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8258]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8258]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8259]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8259]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8260]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8260]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8261]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8261]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8262]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8262]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8263]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8263]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8264]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8264]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8265]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8265]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8266]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8266]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8267]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8267]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8268]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8268]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8269]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8269]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8270]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8270]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8271]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8271]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8272]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8272]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8273]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8273]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8274]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8274]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8275]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8275]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8276]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8276]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8277]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8277]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8278]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8278]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8279]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8279]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8280]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8280]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8281]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8281]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8282]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8282]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8283]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8283]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8284]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8284]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8285]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8285]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8286]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8286]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8287]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8287]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8288]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8288]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8289]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8289]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8290]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8290]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8291]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8291]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8292]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8292]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8293]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8293]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8294]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8294]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8295]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8295]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8296]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8296]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8297]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8297]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8298]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8298]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8299]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8299]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8300]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8300]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8301]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8301]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8302]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8302]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8303]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8303]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8304]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8304]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8305]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8305]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8306]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8306]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8307]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8307]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8308]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8308]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8309]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8309]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8310]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8310]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8311]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8311]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8312]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8312]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8313]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8313]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8314]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8314]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8315]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8315]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8316]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8316]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8317]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8317]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8318]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8318]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8319]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8319]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8320]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8320]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8321]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8321]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8322]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8322]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8323]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8323]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8324]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8324]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8325]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8325]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8326]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8326]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8327]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8327]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8328]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8328]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8329]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8329]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8330]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8330]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8331]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8331]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8332]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8332]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8333]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8333]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8334]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8334]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8335]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8335]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8336]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8336]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8337]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8337]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8338]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8338]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8339]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8339]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8340]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8340]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8341]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8341]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8342]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8342]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8343]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8343]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8344]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8344]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8345]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8345]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8346]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8346]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8347]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8347]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8348]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8348]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8349]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8349]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8350]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8350]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8351]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8351]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8352]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8352]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8353]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8353]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8354]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8354]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8355]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8355]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8356]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8356]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8357]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8357]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8358]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8358]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8359]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8359]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8360]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8360]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8361]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8361]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8362]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8362]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8363]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8363]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8364]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8364]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8365]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8365]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8366]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8366]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8367]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8367]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8368]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8368]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8369]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8369]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8370]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8370]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8371]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8371]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8372]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8372]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8373]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8373]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8374]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8374]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8375]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8375]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8376]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8376]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8377]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8377]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8378]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8378]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8379]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8379]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8380]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8380]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8381]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8381]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8382]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8382]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8383]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8383]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8384]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8384]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8385]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8385]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8386]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8386]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8387]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8387]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8388]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8388]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8389]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8389]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8390]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8390]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8391]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8391]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8392]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8392]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8393]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8393]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8394]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8394]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8395]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8395]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8396]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8396]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8397]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8397]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8398]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8398]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8399]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8399]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8400]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8400]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8401]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8401]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8402]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8402]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8403]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8403]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8404]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8404]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8405]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8405]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8406]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8406]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8407]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8407]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8408]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8408]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8409]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8409]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8410]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8410]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8411]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8411]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8412]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8412]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8413]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8413]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8414]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8414]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8415]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8415]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8416]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8416]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8417]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8417]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8418]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8418]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8419]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8419]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8420]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8420]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8421]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8421]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8422]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8422]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8423]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8423]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8424]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8424]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8425]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8425]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8426]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8426]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8427]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8427]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8428]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8428]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8429]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8429]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8430]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8430]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8431]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8431]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8432]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8432]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8433]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8433]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8434]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8434]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8435]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8435]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8436]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8436]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8437]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8437]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8438]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8438]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8439]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8439]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8440]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8440]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8441]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8441]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8442]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8442]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8443]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8443]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8444]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8444]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8445]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8445]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8446]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8446]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8447]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8447]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8448]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8448]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8449]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8449]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8450]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8450]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8451]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8451]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8452]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8452]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8453]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8453]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8454]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8454]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8455]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8455]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8456]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8456]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8457]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8457]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8458]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8458]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8459]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8459]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8460]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8460]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8461]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8461]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8462]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8462]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8463]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8463]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8464]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8464]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8465]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8465]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8466]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8466]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8467]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8467]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8468]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8468]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8469]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8469]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8470]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8470]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8471]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8471]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8472]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8472]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8473]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8473]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8474]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8474]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8475]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8475]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8476]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8476]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8477]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8477]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8478]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8478]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8479]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8479]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8480]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8480]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8481]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8481]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8482]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8482]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8483]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8483]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8484]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8484]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8485]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8485]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8486]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8486]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8487]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8487]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8488]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8488]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8489]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8489]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8490]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8490]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8491]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8491]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8492]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8492]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8493]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8493]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8494]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8494]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8495]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8495]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8496]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8496]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8497]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8497]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8498]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8498]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8499]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8499]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8500]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8500]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8501]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8501]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8502]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8502]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8503]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8503]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8504]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8504]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8505]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8505]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8506]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8506]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8507]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8507]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8508]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8508]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8509]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8509]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8510]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8510]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8511]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8511]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8512]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8512]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8513]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8513]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8514]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8514]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8515]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8515]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8516]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8516]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8517]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8517]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8518]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8518]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8519]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8519]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8520]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8520]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8521]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8521]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8522]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8522]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8523]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8523]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8524]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8524]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8525]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8525]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8526]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8526]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8527]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8527]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8528]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8528]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8529]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8529]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8530]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8530]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8531]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8531]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8532]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8532]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8533]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8533]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8534]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8534]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8535]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8535]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8536]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8536]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8537]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8537]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8538]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8538]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8539]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8539]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8540]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8540]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8541]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8541]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8542]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8542]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8543]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8543]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8544]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8544]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8545]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8545]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8546]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8546]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8547]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8547]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8548]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8548]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8549]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8549]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8550]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8550]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8551]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8551]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8552]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8552]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8553]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8553]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8554]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8554]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8555]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8555]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8556]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8556]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8557]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8557]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8558]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8558]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8559]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8559]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8560]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8560]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8561]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8561]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8562]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8562]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8563]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8563]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8564]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8564]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8565]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8565]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8566]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8566]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8567]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8567]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8568]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8568]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8569]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8569]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8570]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8570]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8571]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8571]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8572]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8572]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8573]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8573]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8574]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8574]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8575]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8575]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8576]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8576]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8577]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8577]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8578]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8578]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8579]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8579]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8580]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8580]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8581]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8581]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8582]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8582]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8583]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8583]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8584]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8584]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8585]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8585]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8586]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8586]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8587]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8587]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8588]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8588]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8589]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8589]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8590]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8590]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8591]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8591]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8592]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8592]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8593]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8593]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8594]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8594]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8595]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8595]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8596]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8596]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8597]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8597]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8598]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8598]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8599]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8599]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8600]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8600]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8601]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8601]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8602]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8602]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8603]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8603]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8604]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8604]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8605]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8605]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8606]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8606]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8607]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8607]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8608]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8608]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8609]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8609]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8610]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8610]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8611]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8611]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8612]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8612]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8613]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8613]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8614]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8614]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8615]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8615]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8616]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8616]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8617]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8617]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8618]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8618]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8619]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8619]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8620]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8620]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8621]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8621]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8622]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8622]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8623]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8623]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8624]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8624]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8625]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8625]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8626]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8626]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8627]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8627]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8628]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8628]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8629]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8629]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8630]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8630]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8631]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8631]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8632]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8632]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8633]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8633]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8634]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8634]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8635]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8635]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8636]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8636]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8637]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8637]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8638]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8638]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8639]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8639]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8640]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8640]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8641]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8641]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8642]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8642]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8643]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8643]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8644]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8644]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8645]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8645]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8646]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8646]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8647]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8647]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8648]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8648]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8649]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8649]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8650]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8650]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8651]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8651]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8652]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8652]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8653]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8653]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8654]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8654]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8655]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8655]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8656]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8656]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8657]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8657]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8658]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8658]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8659]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8659]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8660]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8660]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8661]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8661]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8662]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8662]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8663]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8663]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8664]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8664]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8665]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8665]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8666]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8666]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8667]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8667]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8668]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8668]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8669]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8669]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8670]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8670]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8671]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8671]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8672]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8672]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8673]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8673]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8674]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8674]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8675]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8675]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8676]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8676]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8677]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8677]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8678]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8678]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8679]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8679]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8680]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8680]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8681]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8681]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8682]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8682]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8683]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8683]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8684]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8684]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8685]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8685]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8686]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8686]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8687]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8687]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8688]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8688]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8689]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8689]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8690]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8690]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8691]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8691]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8692]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8692]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8693]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8693]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8694]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8694]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8695]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8695]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8696]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8696]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8697]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8697]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8698]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8698]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8699]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8699]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8700]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8700]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8701]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8701]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8702]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8702]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8703]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8703]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8704]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8704]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8705]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8705]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8706]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8706]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8707]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8707]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8708]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8708]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8709]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8709]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8710]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8710]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8711]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8711]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8712]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8712]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8713]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8713]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8714]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8714]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8715]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8715]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8716]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8716]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8717]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8717]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8718]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8718]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8719]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8719]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8720]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8720]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8721]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8721]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8722]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8722]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8723]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8723]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8724]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8724]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8725]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8725]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8726]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8726]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8727]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8727]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8728]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8728]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8729]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8729]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8730]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8730]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8731]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8731]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8732]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8732]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8733]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8733]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8734]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8734]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8735]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8735]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8736]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8736]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8737]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8737]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8738]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8738]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8739]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8739]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8740]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8740]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8741]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8741]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8742]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8742]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8743]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8743]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8744]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8744]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8745]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8745]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8746]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8746]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8747]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8747]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8748]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8748]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8749]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8749]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8750]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8750]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8751]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8751]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8752]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8752]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8753]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8753]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8754]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8754]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8755]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8755]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8756]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8756]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8757]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8757]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8758]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8758]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8759]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8759]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8760]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8760]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8761]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8761]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8762]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8762]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8763]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8763]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8764]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8764]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8765]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8765]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8766]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8766]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8767]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8767]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8768]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8768]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8769]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8769]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8770]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8770]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8771]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8771]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8772]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8772]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8773]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8773]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8774]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8774]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8775]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8775]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8776]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8776]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8777]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8777]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8778]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8778]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8779]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8779]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8780]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8780]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8781]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8781]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8782]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8782]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8783]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8783]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8784]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8784]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8785]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8785]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8786]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8786]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8787]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8787]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8788]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8788]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8789]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8789]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8790]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8790]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8791]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8791]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8792]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8792]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8793]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8793]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8794]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8794]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8795]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8795]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8796]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8796]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8797]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8797]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8798]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8798]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8799]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8799]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8800]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8800]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8801]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8801]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8802]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8802]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8803]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8803]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8804]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8804]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8805]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8805]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8806]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8806]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8807]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8807]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8808]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8808]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8809]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8809]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8810]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8810]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8811]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8811]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8812]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8812]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8813]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8813]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8814]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8814]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8815]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8815]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8816]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8816]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8817]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8817]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8818]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8818]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8819]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8819]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8820]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8820]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8821]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8821]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8822]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8822]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8823]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8823]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8824]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8824]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8825]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8825]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8826]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8826]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8827]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8827]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8828]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8828]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8829]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8829]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8830]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8830]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8831]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8831]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8832]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8832]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8833]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8833]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8834]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8834]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8835]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8835]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8836]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8836]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 8837]]} + {:process 3 :type :fail :f :txn :value [[:append 2 8837]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8838]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8838]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 8839]]} + {:process 3 :type :fail :f :txn :value [[:append 7 8839]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8840]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8840]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 8841]]} + {:process 3 :type :fail :f :txn :value [[:append 4 8841]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8842]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8842]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 8843]]} + {:process 3 :type :fail :f :txn :value [[:append 1 8843]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 8844]]} + {:process 3 :type :fail :f :txn :value [[:append 0 8844]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 8845]]} + {:process 3 :type :fail :f :txn :value [[:append 6 8845]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 8846]]} + {:process 3 :type :fail :f :txn :value [[:append 5 8846]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 8847]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8143]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8848]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8848]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8849]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8849]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8850]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8850]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8851]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8851]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8852]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8852]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8853]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8853]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8854]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8854]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8855]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8855]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8856]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8856]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8857]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8857]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8858]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8858]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8859]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8859]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8860]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8860]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8861]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8861]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8862]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8862]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8863]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8863]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8864]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8864]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8865]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8865]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8866]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8866]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8867]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8867]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8868]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8868]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8869]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8869]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8870]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8870]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8871]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8871]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8872]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8872]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8873]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8873]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8874]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8874]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8875]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8875]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8876]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8876]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8877]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8877]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8878]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8878]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8879]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8879]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8880]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8880]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8881]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8881]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8882]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8882]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8883]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8883]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8884]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8884]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8885]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8885]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8886]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8886]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8887]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8887]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8888]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8888]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8889]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8889]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8890]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8890]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8891]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8891]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8892]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8892]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8893]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8893]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8894]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8894]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8895]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8895]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8896]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8896]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8897]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8897]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8898]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8898]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8899]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8899]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8900]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8900]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8901]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8901]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8902]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8902]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8903]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8903]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8904]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8904]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8905]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8905]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8906]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8906]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8907]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8907]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8908]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8908]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8909]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8909]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8910]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8910]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8911]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8911]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8912]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8912]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8913]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8913]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8914]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8914]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8915]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8915]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8916]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8916]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8917]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8917]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8918]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8918]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8919]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8919]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8920]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8920]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8921]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8921]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8922]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8922]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8923]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8923]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8924]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8924]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8925]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8925]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8926]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8926]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8927]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8927]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8928]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8928]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8929]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8929]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8930]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8930]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8931]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8931]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8932]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8932]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8933]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8933]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8934]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8934]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8935]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8935]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8936]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8936]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8937]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8937]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8938]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8938]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8939]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8939]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8940]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8940]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8941]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8941]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8942]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8942]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8943]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8943]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8944]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8944]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8945]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8945]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8946]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8946]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8947]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8947]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8948]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8948]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8949]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8949]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8950]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8950]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8951]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8951]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8952]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8952]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8953]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8953]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8954]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8954]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8955]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8955]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8956]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8956]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8957]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8957]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8958]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8958]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8959]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8959]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8960]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8960]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8961]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8961]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8962]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8962]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8963]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8963]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8964]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8964]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8965]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8965]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8966]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8966]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8967]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8967]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8968]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8968]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8969]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8969]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8970]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8970]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8971]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8971]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8972]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8972]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8973]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8973]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8974]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8974]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8975]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8975]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8976]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8976]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8977]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8977]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8978]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8978]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8979]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8979]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8980]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8980]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8981]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8981]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8982]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8982]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8983]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8983]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8984]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8984]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8985]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8985]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8986]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8986]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8987]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8987]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8988]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8988]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8989]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8989]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8990]]} + {:process 1 :type :fail :f :txn :value [[:append 2 8990]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8991]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8991]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 8992]]} + {:process 1 :type :fail :f :txn :value [[:append 3 8992]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8993]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8993]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 8994]]} + {:process 1 :type :fail :f :txn :value [[:append 0 8994]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 8995]]} + {:process 1 :type :fail :f :txn :value [[:append 7 8995]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 8996]]} + {:process 1 :type :fail :f :txn :value [[:append 1 8996]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 8997]]} + {:process 1 :type :fail :f :txn :value [[:append 4 8997]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 8998]]} + {:process 1 :type :fail :f :txn :value [[:append 6 8998]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 8999]]} + {:process 1 :type :fail :f :txn :value [[:append 5 8999]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9000]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9000]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9001]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9001]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9002]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9002]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9003]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9003]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9004]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9004]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9005]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9005]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9006]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9006]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9007]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9007]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9008]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9008]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9009]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9009]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9010]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9010]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9011]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9011]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9012]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9012]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9013]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9013]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9014]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9014]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9015]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9015]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9016]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9016]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9017]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9017]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9018]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9018]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9019]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9019]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9020]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9020]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9021]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9021]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9022]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9022]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9023]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9023]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9024]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9024]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9025]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9025]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9026]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9026]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9027]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9027]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9028]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9028]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9029]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9029]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9030]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9030]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9031]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9031]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9032]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9032]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9033]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9033]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9034]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9034]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9035]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9035]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9036]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9036]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9037]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9037]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9038]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9038]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9039]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9039]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9040]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9040]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9041]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9041]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9042]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9042]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9043]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9043]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9044]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9044]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9045]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9045]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9046]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9046]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9047]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9047]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9048]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9048]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9049]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9049]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9050]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9050]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9051]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9051]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9052]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9052]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9053]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9053]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9054]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9054]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9055]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9055]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9056]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9056]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9057]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9057]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9058]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9058]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9059]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9059]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9060]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9060]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9061]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9061]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9062]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9062]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9063]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9063]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9064]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9064]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9065]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9065]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9066]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9066]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9067]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9067]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9068]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9068]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9069]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9069]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9070]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9070]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9071]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9071]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9072]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9072]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9073]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9073]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9074]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9074]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9075]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9075]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9076]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9076]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9077]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9077]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9078]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9078]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9079]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9079]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9080]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9080]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9081]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9081]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9082]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9082]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9083]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9083]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9084]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9084]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9085]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9085]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9086]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9086]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9087]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9087]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9088]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9088]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9089]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9089]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9090]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9090]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9091]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9091]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9092]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9092]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9093]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9093]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9094]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9094]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9095]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9095]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9096]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9096]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9097]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9097]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9098]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9098]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9099]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9099]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9100]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9100]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9101]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9101]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9102]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9102]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9103]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9103]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9104]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9104]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9105]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9105]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9106]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9106]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9107]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9107]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9108]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9108]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9109]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9109]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9110]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9110]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9111]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9111]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9112]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9112]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9113]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9113]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9114]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9114]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9115]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9115]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9116]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9116]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9117]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9117]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9118]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9118]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9119]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9119]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9120]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9120]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9121]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9121]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9122]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9122]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9123]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9123]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9124]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9124]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9125]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9125]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9126]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9126]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9127]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9127]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9128]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9128]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9129]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9129]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9130]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9130]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9131]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9131]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9132]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9132]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9133]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9133]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9134]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9134]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9135]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9135]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9136]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9136]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9137]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9137]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9138]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9138]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9139]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9139]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9140]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9140]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9141]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9141]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9142]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9142]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9143]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9143]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9144]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9144]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9145]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9145]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9146]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9146]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9147]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9147]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9148]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9148]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9149]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9149]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9150]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9150]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9151]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9151]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9152]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9152]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9153]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9153]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9154]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9154]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9155]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9155]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9156]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9156]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9157]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9157]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9158]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9158]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9159]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9159]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9160]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9160]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9161]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9161]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9162]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9162]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9163]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9163]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9164]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9164]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9165]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9165]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9166]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9166]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9167]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9167]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9168]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9168]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9169]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9169]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9170]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9170]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9171]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9171]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9172]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9172]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9173]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9173]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9174]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9174]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9175]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9175]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9176]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9176]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9177]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9177]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9178]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9178]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9179]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9179]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9180]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9180]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9181]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9181]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9182]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9182]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9183]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9183]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9184]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9184]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9185]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9185]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9186]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9186]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9187]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9187]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9188]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9188]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9189]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9189]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9190]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9190]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9191]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9191]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9192]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9192]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9193]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9193]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9194]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9194]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9195]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9195]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9196]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9196]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9197]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9197]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9198]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9198]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9199]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9199]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9200]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9200]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9201]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9201]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9202]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9202]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9203]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9203]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9204]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9204]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9205]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9205]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9206]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9206]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9207]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9207]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9208]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9208]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9209]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9209]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9210]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9210]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9211]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9211]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9212]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9212]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9213]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9213]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9214]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9214]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9215]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9215]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9216]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9216]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9217]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9217]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9218]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9218]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9219]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9219]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9220]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9220]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9221]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9221]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9222]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9222]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9223]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9223]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9224]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9224]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9225]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9225]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9226]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9226]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9227]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9227]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9228]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9228]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9229]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9229]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9230]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9230]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9231]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9231]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9232]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9232]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9233]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9233]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9234]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9234]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9235]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9235]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9236]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9236]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9237]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9237]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9238]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9238]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9239]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9239]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9240]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9240]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9241]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9241]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9242]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9242]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9243]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9243]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9244]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9244]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9245]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9245]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9246]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9246]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9247]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9247]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9248]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9248]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9249]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9249]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9250]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9250]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9251]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9251]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9252]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9252]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9253]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9253]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9254]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9254]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9255]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9255]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9256]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9256]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9257]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9257]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9258]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9258]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9259]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9259]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9260]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9260]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9261]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9261]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9262]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9262]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9263]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9263]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9264]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9264]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9265]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9265]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9266]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9266]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9267]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9267]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9268]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9268]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9269]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9269]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9270]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9270]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9271]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9271]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9272]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9272]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9273]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9273]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9274]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9274]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9275]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9275]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9276]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9276]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9277]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9277]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 9278]]} + {:process 1 :type :fail :f :txn :value [[:append 2 9278]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9279]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9279]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 9280]]} + {:process 1 :type :fail :f :txn :value [[:append 3 9280]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9281]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9281]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 9282]]} + {:process 1 :type :fail :f :txn :value [[:append 0 9282]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 9283]]} + {:process 1 :type :fail :f :txn :value [[:append 7 9283]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 9284]]} + {:process 1 :type :fail :f :txn :value [[:append 1 9284]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 9285]]} + {:process 1 :type :fail :f :txn :value [[:append 4 9285]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 9286]]} + {:process 1 :type :fail :f :txn :value [[:append 6 9286]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 9287]]} + {:process 1 :type :fail :f :txn :value [[:append 5 9287]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 8847]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9288]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9288]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9289]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9289]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9290]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9290]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9291]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9291]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9292]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9292]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9293]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9293]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9294]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9294]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9295]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9295]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9296]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9296]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9297]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9297]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9298]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9298]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9299]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9299]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9300]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9300]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9301]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9301]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9302]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9302]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9303]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9303]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9304]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9304]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9305]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9305]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9306]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9306]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9307]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9307]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9308]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9308]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9309]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9309]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9310]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9310]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9311]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9311]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9312]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9312]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9313]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9313]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9314]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9314]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9315]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9315]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9316]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9316]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9317]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9317]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9318]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9318]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9319]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9319]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9320]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9320]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9321]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9321]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9322]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9322]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9323]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9323]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9324]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9324]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9325]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9325]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9326]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9326]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9327]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9327]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9328]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9328]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9329]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9329]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9330]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9330]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9331]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9331]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9332]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9332]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9333]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9333]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9334]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9334]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9335]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9335]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9336]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9336]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9337]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9337]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9338]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9338]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9339]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9339]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9340]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9340]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9341]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9341]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9342]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9342]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9343]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9343]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9344]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9344]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9345]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9345]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9346]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9346]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9347]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9347]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9348]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9348]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9349]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9349]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9350]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9350]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9351]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9351]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9352]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9352]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9353]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9353]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9354]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9354]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9355]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9355]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9356]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9356]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9357]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9357]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9358]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9358]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9359]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9359]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9360]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9360]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9361]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9361]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9362]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9362]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9363]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9363]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9364]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9364]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9365]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9365]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9366]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9366]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9367]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9367]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9368]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9368]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9369]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9369]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9370]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9370]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9371]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9371]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9372]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9372]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9373]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9373]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9374]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9374]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9375]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9375]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9376]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9376]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9377]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9377]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9378]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9378]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9379]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9379]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9380]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9380]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9381]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9381]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9382]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9382]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9383]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9383]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9384]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9384]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9385]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9385]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9386]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9386]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9387]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9387]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9388]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9388]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9389]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9389]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9390]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9390]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9391]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9391]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9392]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9392]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9393]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9393]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9394]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9394]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9395]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9395]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9396]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9396]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9397]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9397]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9398]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9398]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9399]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9399]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9400]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9400]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9401]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9401]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9402]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9402]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9403]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9403]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9404]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9404]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9405]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9405]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9406]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9406]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9407]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9407]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9408]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9408]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9409]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9409]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9410]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9410]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9411]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9411]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9412]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9412]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9413]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9413]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9414]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9414]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9415]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9415]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9416]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9416]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9417]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9417]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9418]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9418]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9419]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9419]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9420]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9420]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9421]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9421]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9422]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9422]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9423]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9423]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9424]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9424]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9425]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9425]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9426]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9426]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9427]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9427]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9428]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9428]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9429]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9429]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9430]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9430]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9431]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9431]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9432]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9432]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9433]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9433]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9434]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9434]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9435]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9435]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9436]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9436]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9437]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9437]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9438]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9438]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9439]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9439]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9440]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9440]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9441]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9441]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9442]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9442]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9443]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9443]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9444]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9444]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9445]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9445]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9446]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9446]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9447]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9447]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9448]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9448]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9449]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9449]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9450]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9450]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9451]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9451]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9452]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9452]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9453]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9453]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9454]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9454]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9455]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9455]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9456]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9456]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9457]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9457]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9458]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9458]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9459]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9459]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9460]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9460]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9461]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9461]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9462]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9462]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9463]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9463]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9464]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9464]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9465]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9465]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9466]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9466]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9467]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9467]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9468]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9468]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9469]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9469]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9470]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9470]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9471]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9471]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9472]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9472]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9473]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9473]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9474]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9474]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9475]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9475]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9476]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9476]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9477]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9477]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9478]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9478]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9479]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9479]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9480]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9480]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9481]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9481]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9482]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9482]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9483]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9483]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9484]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9484]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9485]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9485]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9486]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9486]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9487]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9487]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9488]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9488]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9489]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9489]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9490]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9490]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9491]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9491]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9492]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9492]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9493]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9493]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9494]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9494]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9495]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9495]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9496]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9496]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9497]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9497]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9498]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9498]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9499]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9499]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9500]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9500]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9501]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9501]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9502]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9502]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9503]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9503]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9504]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9504]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9505]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9505]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9506]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9506]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9507]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9507]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9508]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9508]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9509]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9509]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9510]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9510]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9511]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9511]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9512]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9512]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9513]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9513]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9514]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9514]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9515]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9515]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9516]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9516]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9517]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9517]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9518]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9518]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9519]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9519]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9520]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9520]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9521]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9521]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9522]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9522]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9523]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9523]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9524]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9524]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9525]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9525]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9526]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9526]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9527]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9527]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9528]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9528]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9529]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9529]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9530]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9530]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9531]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9531]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9532]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9532]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9533]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9533]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9534]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9534]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9535]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9535]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9536]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9536]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9537]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9537]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9538]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9538]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9539]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9539]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9540]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9540]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9541]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9541]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9542]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9542]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9543]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9543]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9544]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9544]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9545]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9545]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9546]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9546]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9547]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9547]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9548]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9548]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9549]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9549]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9550]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9550]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9551]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9551]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9552]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9552]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9553]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9553]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9554]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9554]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9555]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9555]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9556]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9556]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9557]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9557]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9558]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9558]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9559]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9559]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9560]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9560]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9561]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9561]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9562]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9562]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9563]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9563]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9564]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9564]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9565]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9565]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9566]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9566]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9567]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9567]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9568]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9568]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9569]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9569]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9570]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9570]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9571]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9571]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9572]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9572]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9573]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9573]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9574]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9574]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9575]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9575]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9576]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9576]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9577]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9577]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9578]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9578]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9579]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9579]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9580]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9580]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9581]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9581]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9582]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9582]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9583]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9583]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9584]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9584]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9585]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9585]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9586]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9586]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9587]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9587]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9588]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9588]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9589]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9589]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9590]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9590]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 9591]]} + {:process 3 :type :fail :f :txn :value [[:append 3 9591]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9592]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9592]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 9593]]} + {:process 3 :type :fail :f :txn :value [[:append 0 9593]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9594]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9594]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 9595]]} + {:process 3 :type :fail :f :txn :value [[:append 5 9595]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 9596]]} + {:process 3 :type :fail :f :txn :value [[:append 4 9596]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 9597]]} + {:process 3 :type :fail :f :txn :value [[:append 2 9597]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 9598]]} + {:process 3 :type :fail :f :txn :value [[:append 1 9598]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 9599]]} + {:process 3 :type :fail :f :txn :value [[:append 7 9599]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 9600]]} + {:process 3 :type :fail :f :txn :value [[:append 6 9600]]} +] diff --git a/deploy/fly-accord-elle/elle-fly-history-nemesis.edn.anomalies.edn b/deploy/fly-accord-elle/elle-fly-history-nemesis.edn.anomalies.edn new file mode 100644 index 00000000..90b5a842 --- /dev/null +++ b/deploy/fly-accord-elle/elle-fly-history-nemesis.edn.anomalies.edn @@ -0,0 +1 @@ +nil \ No newline at end of file From 438432796e58398c1b278708674efb51eaf02ace Mon Sep 17 00:00:00 2001 From: Ben Kearns <35475+bkearns@users.noreply.github.com> Date: Sat, 25 Jul 2026 20:32:48 -0700 Subject: [PATCH 11/16] fix(elle): replace dead sessions on any failure, and spread workers across nodes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Three cert runs produced vacuous verdicts. Root cause found in the generator, not the database. === 1. RECONNECT WAS GATED ON THE WRONG CONDITION === The session replacement lived inside `if let Some(id) = txn_id_opt`, so a broken session was only ever replaced when BEGIN had already SUCCEEDED. That is exactly backwards: when the connection dies, BEGIN is the statement that fails, so there is no txn id, the branch is skipped, and the worker spins its entire remaining op budget against a corpse. Measured on run 3: 38,543 of 61,564 failures were "BEGIN: No connections in the pool: The pool is broken". One network disruption ~100s in permanently killed all eight workers, leaving Elle to check a history that was 96% connection errors — 2,418 :ok out of 64,000 ops. `valid? true` on that is meaningless. Reconnect is now driven by session HEALTH via `is_session_dead`, independent of which statement failed. Deliberately narrow: pool/connection errors replace the session, while server-side rejections (invalid query, insufficient replicas) leave it alone, since needlessly rebuilding a session would discard the transaction state the pinned-connection model depends on. The READ path had the same defect AND swallowed its error entirely (`Err(_)`), so read failures never reached the tally that exists to explain a run. Both fixed. Why earlier certifications never hit this: the generator ran ON the coordinator against localhost, which survives peer-level ip6tables rules, so the pool never broke. Any off-node generator — required to fault-inject the coordinator itself — depends on this reconnect. === 2. ALL WORKERS PINNED TO ONE NODE === `min_by_key(host_id)` gave every worker the same target, so one node coordinated 100% of the workload. Workers now round-robin across all nodes (schema setup stays on a single session; each worker remains pinned to ITS node, preserving the one-transaction-one-connection invariant that FallthroughRetryPolicy protects). Two things this fixes: killing a node no longer removes all traffic, so a rejoining node faces real load — the condition the restart faults need; and transactions are now coordinated by every node, so cross-coordinator Accord ordering is exercised, which single-target runs never covered. Corrects a wrong diagnosis of my own along the way: I had claimed the generator was dying with its target, on the strength of two runs ending at similar wall-clock despite a 4.4x op count. The 64,000 :invoke count refutes that — the generator completed every op. Failing ops are simply fast, so a mostly-failing run races through its budget. --- .../elle-fly-history-nemesis.edn | 152892 ++++++++++++--- ferrosa-jepsen/examples/elle_list_append.rs | 110 +- 2 files changed, 126137 insertions(+), 26865 deletions(-) diff --git a/deploy/fly-accord-elle/elle-fly-history-nemesis.edn b/deploy/fly-accord-elle/elle-fly-history-nemesis.edn index 4078f3c0..e45f019d 100644 --- a/deploy/fly-accord-elle/elle-fly-history-nemesis.edn +++ b/deploy/fly-accord-elle/elle-fly-history-nemesis.edn @@ -14,28789 +14,127989 @@ {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 0 :type :ok :f :txn :value [[:r 2 []]]} {:process 0 :type :invoke :f :txn :value [[:append 1 5]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 6]]} {:process 0 :type :ok :f :txn :value [[:append 1 5]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 6]]} - {:process 0 :type :ok :f :txn :value [[:append 0 6]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :ok :f :txn :value [[:r 7 [1]]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 7]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8]]} - {:process 0 :type :ok :f :txn :value [[:append 6 7]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 9]]} - {:process 1 :type :ok :f :txn :value [[:append 7 8]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 10]]} - {:process 0 :type :ok :f :txn :value [[:append 5 9]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :ok :f :txn :value [[:r 4 [3]]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 11]]} - {:process 1 :type :ok :f :txn :value [[:append 2 10]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 7]]} + {:process 1 :type :ok :f :txn :value [[:append 7 6]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 8]]} + {:process 0 :type :ok :f :txn :value [[:append 0 7]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1 6]]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 9]]} + {:process 1 :type :ok :f :txn :value [[:append 2 8]]} {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 1 :type :ok :f :txn :value [[:r 1 [5]]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 12]]} - {:process 0 :type :ok :f :txn :value [[:append 3 11]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 13]]} - {:process 1 :type :ok :f :txn :value [[:append 4 12]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 14]]} - {:process 0 :type :ok :f :txn :value [[:append 2 13]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 10]]} + {:process 0 :type :ok :f :txn :value [[:append 6 9]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 11]]} + {:process 1 :type :ok :f :txn :value [[:append 4 10]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 12]]} + {:process 0 :type :ok :f :txn :value [[:append 5 11]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3 10]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 13]]} + {:process 1 :type :ok :f :txn :value [[:append 3 12]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 9]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 14]]} + {:process 0 :type :ok :f :txn :value [[:append 3 13]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 15]]} + {:process 1 :type :ok :f :txn :value [[:append 5 14]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 16]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17]]} + {:process 0 :type :ok :f :txn :value [[:append 2 15]]} {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 0 :type :ok :f :txn :value [[:r 1 [5]]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 15]]} - {:process 1 :type :ok :f :txn :value [[:append 3 14]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :ok :f :txn :value [[:r 6 [2 7]]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 16]]} - {:process 0 :type :ok :f :txn :value [[:append 0 15]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 17]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 18]]} - {:process 1 :type :ok :f :txn :value [[:append 5 16]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 19]]} - {:process 0 :type :ok :f :txn :value [[:append 7 17]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :ok :f :txn :value [[:r 6 [2 7]]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 20]]} - {:process 2 :type :ok :f :txn :value [[:append 2 18]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 0 19]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :ok :f :txn :value [[:r 5 [9 16]]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 21]]} - {:process 1 :type :ok :f :txn :value [[:r 7 [1 8 17]]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 22]]} - {:process 0 :type :ok :f :txn :value [[:append 5 20]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 23]]} - {:process 2 :type :ok :f :txn :value [[:append 4 21]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 24]]} - {:process 0 :type :ok :f :txn :value [[:append 4 23]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 2 22]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 25]]} - {:process 0 :type :ok :f :txn :value [[:r 3 [4 11 14]]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 26]]} - {:process 2 :type :ok :f :txn :value [[:append 7 24]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :ok :f :txn :value [[:r 6 [2 7]]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 27]]} - {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20]]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 28]]} - {:process 1 :type :ok :f :txn :value [[:append 1 25]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :ok :f :txn :value [[:append 2 26]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 29]]} - {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23]]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 30]]} - {:process 3 :type :ok :f :txn :value [[:append 4 28]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 31]]} - {:process 2 :type :ok :f :txn :value [[:append 1 27]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 32]]} - {:process 1 :type :ok :f :txn :value [[:append 3 30]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 33]]} - {:process 0 :type :ok :f :txn :value [[:append 1 29]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 3 31]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :ok :f :txn :value [[:r 0 [6 15 19]]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 34]]} - {:process 2 :type :ok :f :txn :value [[:append 0 32]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26]]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 35]]} - {:process 2 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31]]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 36]]} - {:process 1 :type :ok :f :txn :value [[:append 6 33]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 37]]} - {:process 0 :type :ok :f :txn :value [[:append 7 34]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 38]]} - {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20]]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 39]]} - {:process 3 :type :ok :f :txn :value [[:append 1 35]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 40]]} - {:process 2 :type :ok :f :txn :value [[:append 2 36]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 41]]} - {:process 1 :type :ok :f :txn :value [[:append 0 39]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 42]]} - {:process 4 :type :ok :f :txn :value [[:append 4 37]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 43]]} - {:process 0 :type :ok :f :txn :value [[:append 6 38]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 0 40]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :ok :f :txn :value [[:r 5 [9 16 20]]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 44]]} - {:process 2 :type :ok :f :txn :value [[:append 5 41]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34]]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 45]]} - {:process 1 :type :ok :f :txn :value [[:append 7 42]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 3 43]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37]]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 46]]} - {:process 1 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36]]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 47]]} - {:process 4 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36]]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 48]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 49]]} - {:process 0 :type :ok :f :txn :value [[:append 4 44]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 18]]} + {:process 1 :type :ok :f :txn :value [[:append 0 16]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 2 17]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 6]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 19]]} + {:process 2 :type :ok :f :txn :value [[:r 5 [11 14]]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20]]} + {:process 0 :type :ok :f :txn :value [[:append 0 18]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21]]} + {:process 1 :type :ok :f :txn :value [[:append 2 19]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 22]]} + {:process 2 :type :ok :f :txn :value [[:append 4 20]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 23]]} + {:process 0 :type :ok :f :txn :value [[:append 7 21]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 6 [2 9]]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24]]} + {:process 1 :type :ok :f :txn :value [[:append 1 22]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 7 23]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 10 20]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25]]} + {:process 2 :type :ok :f :txn :value [[:r 6 [2 9]]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 26]]} + {:process 0 :type :ok :f :txn :value [[:append 5 24]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27]]} + {:process 1 :type :ok :f :txn :value [[:append 3 25]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 1 26]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 29]]} + {:process 0 :type :ok :f :txn :value [[:append 4 27]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [11 14 24]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 30]]} + {:process 0 :type :ok :f :txn :value [[:r 3 [4 12 13 25]]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 31]]} + {:process 1 :type :ok :f :txn :value [[:append 6 28]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 0 29]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [11 14 24]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32]]} + {:process 3 :type :ok :f :txn :value [[:append 4 30]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 33]]} + {:process 2 :type :ok :f :txn :value [[:r 3 [4 12 13 25]]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 34]]} + {:process 0 :type :ok :f :txn :value [[:append 2 31]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 35]]} + {:process 3 :type :ok :f :txn :value [[:append 3 33]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 32]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 36]]} + {:process 2 :type :ok :f :txn :value [[:append 2 34]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 37]]} + {:process 3 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34]]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 38]]} + {:process 0 :type :ok :f :txn :value [[:append 1 35]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32]]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 39]]} + {:process 1 :type :ok :f :txn :value [[:append 7 36]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34]]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 40]]} + {:process 3 :type :ok :f :txn :value [[:append 1 38]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 41]]} + {:process 2 :type :ok :f :txn :value [[:append 5 37]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 42]]} + {:process 0 :type :ok :f :txn :value [[:append 7 39]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 43]]} + {:process 2 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30]]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 44]]} + {:process 1 :type :ok :f :txn :value [[:append 1 40]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 45]]} + {:process 3 :type :ok :f :txn :value [[:append 0 41]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 6 43]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 4 42]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 46]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 47]]} + {:process 0 :type :ok :f :txn :value [[:r 5 [11 14 24 37]]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 48]]} + {:process 2 :type :ok :f :txn :value [[:append 7 44]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 49]]} + {:process 1 :type :ok :f :txn :value [[:append 4 45]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 3 46]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 4 48]]} {:process 0 :type :invoke :f :txn :value [[:append 3 50]]} - {:process 3 :type :ok :f :txn :value [[:append 6 45]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 51]]} - {:process 2 :type :ok :f :txn :value [[:append 7 46]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 52]]} - {:process 5 :type :ok :f :txn :value [[:append 5 49]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 1 47]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 53]]} - {:process 4 :type :ok :f :txn :value [[:append 1 48]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 54]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 51]]} + {:process 2 :type :ok :f :txn :value [[:append 6 49]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 6 47]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 52]]} + {:process 4 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34]]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 53]]} + {:process 2 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40]]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 54]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 55]]} {:process 0 :type :ok :f :txn :value [[:append 3 50]]} {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36]]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 55]]} - {:process 0 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36]]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 56]]} - {:process 3 :type :ok :f :txn :value [[:append 5 51]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :ok :f :txn :value [[:append 6 52]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44]]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 57]]} - {:process 2 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48]]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 58]]} - {:process 1 :type :ok :f :txn :value [[:append 4 53]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 0 54]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :ok :f :txn :value [[:append 3 55]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 59]]} - {:process 0 :type :ok :f :txn :value [[:append 1 56]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 60]]} - {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55]]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 61]]} - {:process 6 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36]]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 62]]} - {:process 4 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46]]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 63]]} - {:process 3 :type :ok :f :txn :value [[:append 3 57]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 64]]} - {:process 2 :type :ok :f :txn :value [[:append 0 58]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 65]]} - {:process 0 :type :ok :f :txn :value [[:append 0 60]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 6 :type :ok :f :txn :value [[:append 7 62]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 66]]} - {:process 5 :type :ok :f :txn :value [[:append 0 59]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 6 63]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 67]]} - {:process 1 :type :ok :f :txn :value [[:append 6 61]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 68]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 69]]} - {:process 0 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62]]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 70]]} - {:process 5 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56]]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 71]]} - {:process 3 :type :ok :f :txn :value [[:append 2 64]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56]]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 72]]} - {:process 6 :type :ok :f :txn :value [[:append 0 66]]} - {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :ok :f :txn :value [[:append 3 65]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 5 68]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 7 69]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 73]]} - {:process 0 :type :ok :f :txn :value [[:append 6 70]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 74]]} - {:process 5 :type :ok :f :txn :value [[:append 6 71]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 75]]} - {:process 6 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68]]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 76]]} - {:process 4 :type :ok :f :txn :value [[:append 5 67]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64]]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 77]]} - {:process 1 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66]]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 78]]} - {:process 4 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53]]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 79]]} - {:process 3 :type :ok :f :txn :value [[:append 0 72]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 80]]} - {:process 2 :type :ok :f :txn :value [[:append 5 77]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 81]]} - {:process 0 :type :ok :f :txn :value [[:append 5 74]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 0 73]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 6 :type :ok :f :txn :value [[:append 6 76]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 82]]} - {:process 5 :type :ok :f :txn :value [[:append 7 75]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53]]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 83]]} - {:process 7 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56]]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 84]]} - {:process 1 :type :ok :f :txn :value [[:append 7 78]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 85]]} - {:process 5 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53]]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 86]]} - {:process 4 :type :ok :f :txn :value [[:append 3 79]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 87]]} - {:process 3 :type :ok :f :txn :value [[:append 7 80]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :ok :f :txn :value [[:append 4 81]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76]]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 88]]} - {:process 6 :type :ok :f :txn :value [[:append 3 82]]} - {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80]]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 89]]} - {:process 5 :type :ok :f :txn :value [[:append 5 86]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 90]]} - {:process 7 :type :ok :f :txn :value [[:append 2 84]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 91]]} - {:process 6 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81]]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 92]]} - {:process 1 :type :ok :f :txn :value [[:append 2 85]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :ok :f :txn :value [[:append 3 83]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 93]]} - {:process 4 :type :ok :f :txn :value [[:append 2 87]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56]]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 94]]} - {:process 4 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56]]]} + {:process 1 :type :ok :f :txn :value [[:append 6 51]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 56]]} + {:process 4 :type :ok :f :txn :value [[:append 1 53]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 57]]} + {:process 3 :type :ok :f :txn :value [[:append 5 52]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34]]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 58]]} + {:process 2 :type :ok :f :txn :value [[:append 0 54]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 59]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 60]]} + {:process 5 :type :ok :f :txn :value [[:append 5 55]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 5 56]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 0 57]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 3 59]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34]]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 61]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 62]]} + {:process 0 :type :ok :f :txn :value [[:append 1 58]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 63]]} + {:process 4 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44]]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 64]]} + {:process 2 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34]]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 65]]} + {:process 3 :type :ok :f :txn :value [[:append 3 60]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 66]]} + {:process 1 :type :ok :f :txn :value [[:append 7 62]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 67]]} + {:process 5 :type :ok :f :txn :value [[:append 3 61]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 68]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 0 63]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 5 65]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 69]]} + {:process 6 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34]]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 70]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62]]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 71]]} + {:process 4 :type :ok :f :txn :value [[:append 6 64]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 72]]} + {:process 3 :type :ok :f :txn :value [[:append 2 66]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 73]]} + {:process 5 :type :ok :f :txn :value [[:append 0 68]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 2 67]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58]]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 74]]} + {:process 4 :type :ok :f :txn :value [[:append 5 72]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 75]]} + {:process 0 :type :ok :f :txn :value [[:append 6 71]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 76]]} + {:process 2 :type :ok :f :txn :value [[:append 4 69]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 7 70]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 77]]} + {:process 4 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69]]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 78]]} + {:process 3 :type :ok :f :txn :value [[:append 0 73]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 79]]} + {:process 2 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70]]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 80]]} + {:process 5 :type :ok :f :txn :value [[:append 6 74]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 81]]} + {:process 0 :type :ok :f :txn :value [[:append 5 76]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 4 75]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 82]]} + {:process 3 :type :ok :f :txn :value [[:append 7 79]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 0 77]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 83]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 84]]} + {:process 4 :type :ok :f :txn :value [[:append 3 78]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 85]]} + {:process 2 :type :ok :f :txn :value [[:append 6 80]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 86]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 87]]} + {:process 6 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76]]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 88]]} + {:process 5 :type :ok :f :txn :value [[:append 7 81]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 3 82]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 5 87]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 89]]} + {:process 0 :type :ok :f :txn :value [[:append 3 84]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 90]]} + {:process 5 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75]]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 91]]} + {:process 7 :type :ok :f :txn :value [[:append 7 83]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 92]]} + {:process 4 :type :ok :f :txn :value [[:append 2 85]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 93]]} + {:process 6 :type :ok :f :txn :value [[:append 6 88]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 94]]} + {:process 2 :type :ok :f :txn :value [[:append 1 86]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86]]]} {:process 4 :type :invoke :f :txn :value [[:append 0 95]]} - {:process 3 :type :ok :f :txn :value [[:append 5 88]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 96]]} - {:process 7 :type :ok :f :txn :value [[:append 3 91]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :ok :f :txn :value [[:append 6 89]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 97]]} - {:process 5 :type :ok :f :txn :value [[:append 2 90]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 6 :type :ok :f :txn :value [[:append 1 92]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 98]]} - {:process 0 :type :ok :f :txn :value [[:append 2 93]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81]]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 99]]} - {:process 5 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91]]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 100]]} - {:process 1 :type :ok :f :txn :value [[:append 4 94]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 101]]} - {:process 0 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92]]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 102]]} + {:process 2 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77]]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 96]]} + {:process 0 :type :ok :f :txn :value [[:append 2 90]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 0 92]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 5 91]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 97]]} + {:process 3 :type :ok :f :txn :value [[:append 4 89]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 5 93]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 98]]} + {:process 6 :type :ok :f :txn :value [[:append 3 94]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86]]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 99]]} + {:process 7 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86]]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 100]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 101]]} {:process 4 :type :ok :f :txn :value [[:append 0 95]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 103]]} - {:process 3 :type :ok :f :txn :value [[:append 4 96]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :ok :f :txn :value [[:append 1 97]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 6 :type :ok :f :txn :value [[:append 2 98]]} - {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91]]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 104]]} - {:process 2 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95]]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 105]]} - {:process 1 :type :ok :f :txn :value [[:append 3 101]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 5 99]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 106]]} - {:process 5 :type :ok :f :txn :value [[:append 0 100]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 107]]} - {:process 6 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80]]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 108]]} - {:process 0 :type :ok :f :txn :value [[:append 0 102]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 109]]} - {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89]]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 110]]} - {:process 4 :type :ok :f :txn :value [[:append 7 103]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 2 104]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 111]]} - {:process 4 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89]]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 112]]} - {:process 2 :type :ok :f :txn :value [[:append 3 105]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 113]]} - {:process 5 :type :ok :f :txn :value [[:append 1 107]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 6 :type :ok :f :txn :value [[:append 0 108]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 114]]} - {:process 7 :type :ok :f :txn :value [[:append 6 106]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 5 110]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 115]]} - {:process 0 :type :ok :f :txn :value [[:append 7 109]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106]]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 116]]} - {:process 7 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109]]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 117]]} - {:process 0 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106]]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 118]]} - {:process 3 :type :ok :f :txn :value [[:append 1 111]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 5 112]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 119]]} - {:process 3 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108]]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 120]]} - {:process 2 :type :ok :f :txn :value [[:append 2 113]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 6 :type :ok :f :txn :value [[:append 5 114]]} - {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 0 115]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 0 117]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 121]]} - {:process 2 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114]]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 122]]} - {:process 5 :type :ok :f :txn :value [[:append 7 116]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 123]]} - {:process 6 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106]]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 124]]} - {:process 0 :type :ok :f :txn :value [[:append 5 118]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 102]]} + {:process 6 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89]]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 103]]} + {:process 2 :type :ok :f :txn :value [[:append 3 96]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 104]]} + {:process 5 :type :ok :f :txn :value [[:append 2 97]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 98]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 7 102]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96]]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 105]]} + {:process 3 :type :ok :f :txn :value [[:append 2 101]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 106]]} + {:process 0 :type :ok :f :txn :value [[:append 0 99]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 107]]} + {:process 7 :type :ok :f :txn :value [[:append 2 100]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 108]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 109]]} + {:process 4 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88]]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 110]]} + {:process 6 :type :ok :f :txn :value [[:append 1 103]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 111]]} + {:process 2 :type :ok :f :txn :value [[:append 2 104]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93]]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 112]]} + {:process 7 :type :ok :f :txn :value [[:append 3 108]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 2 109]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 113]]} + {:process 5 :type :ok :f :txn :value [[:append 0 105]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 114]]} + {:process 3 :type :ok :f :txn :value [[:append 1 106]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 7 107]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89]]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 115]]} + {:process 6 :type :ok :f :txn :value [[:append 2 111]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105]]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 116]]} + {:process 0 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88]]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 117]]} + {:process 4 :type :ok :f :txn :value [[:append 5 110]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 118]]} + {:process 6 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107]]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 119]]} + {:process 2 :type :ok :f :txn :value [[:append 4 112]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 120]]} + {:process 5 :type :ok :f :txn :value [[:append 1 114]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 1 113]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 5 115]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 121]]} + {:process 3 :type :ok :f :txn :value [[:append 7 116]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 122]]} + {:process 5 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88]]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 123]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 124]]} + {:process 4 :type :ok :f :txn :value [[:append 4 118]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 5 117]]} {:process 0 :type :invoke :f :txn :value [[:append 4 125]]} - {:process 1 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116]]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 126]]} - {:process 4 :type :ok :f :txn :value [[:append 4 119]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 7 120]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 127]]} - {:process 4 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105]]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 128]]} + {:process 6 :type :ok :f :txn :value [[:append 0 119]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 126]]} + {:process 4 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108]]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 127]]} + {:process 2 :type :ok :f :txn :value [[:append 7 120]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 7 123]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 128]]} + {:process 1 :type :ok :f :txn :value [[:append 3 124]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 129]]} + {:process 3 :type :ok :f :txn :value [[:append 6 122]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 6 121]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121]]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 130]]} + {:process 6 :type :ok :f :txn :value [[:append 5 126]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 0 :type :ok :f :txn :value [[:append 4 125]]} {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :ok :f :txn :value [[:append 4 123]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :ok :f :txn :value [[:append 4 122]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 129]]} - {:process 6 :type :ok :f :txn :value [[:append 3 124]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 130]]} - {:process 7 :type :ok :f :txn :value [[:append 1 121]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124]]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 131]]} - {:process 1 :type :ok :f :txn :value [[:append 2 126]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 132]]} - {:process 5 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118]]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 133]]} - {:process 7 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126]]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 134]]} - {:process 3 :type :ok :f :txn :value [[:append 6 127]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 2 128]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 135]]} - {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118]]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 136]]} - {:process 6 :type :ok :f :txn :value [[:append 4 130]]} - {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :ok :f :txn :value [[:append 7 129]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :ok :f :txn :value [[:append 2 131]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 137]]} - {:process 7 :type :ok :f :txn :value [[:append 3 134]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 138]]} - {:process 6 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121]]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 139]]} - {:process 1 :type :ok :f :txn :value [[:append 1 132]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127]]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 140]]} - {:process 5 :type :ok :f :txn :value [[:append 2 133]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 141]]} - {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130]]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 142]]} - {:process 3 :type :ok :f :txn :value [[:append 4 136]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 143]]} - {:process 4 :type :ok :f :txn :value [[:append 1 135]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 6 :type :ok :f :txn :value [[:append 2 139]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 144]]} - {:process 4 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117]]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 145]]} - {:process 0 :type :ok :f :txn :value [[:append 1 137]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 4 138]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :ok :f :txn :value [[:append 3 141]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :ok :f :txn :value [[:append 1 140]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 146]]} - {:process 1 :type :ok :f :txn :value [[:append 3 142]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 147]]} - {:process 0 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117]]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 148]]} - {:process 7 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118]]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 149]]} - {:process 3 :type :ok :f :txn :value [[:append 3 143]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 131]]} + {:process 7 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123]]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 132]]} + {:process 4 :type :ok :f :txn :value [[:append 2 127]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 133]]} + {:process 6 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121]]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 134]]} + {:process 0 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124]]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 135]]} + {:process 2 :type :ok :f :txn :value [[:append 1 130]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 136]]} + {:process 1 :type :ok :f :txn :value [[:append 6 129]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 4 128]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 4 131]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 137]]} + {:process 6 :type :ok :f :txn :value [[:append 3 134]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 138]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 139]]} + {:process 7 :type :ok :f :txn :value [[:append 0 132]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 140]]} + {:process 5 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126]]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 141]]} + {:process 0 :type :ok :f :txn :value [[:append 2 135]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 142]]} + {:process 4 :type :ok :f :txn :value [[:append 1 133]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132]]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 143]]} + {:process 2 :type :ok :f :txn :value [[:append 0 136]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 1 140]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 1 142]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 139]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 144]]} + {:process 2 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134]]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 145]]} + {:process 6 :type :ok :f :txn :value [[:append 4 138]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 2 141]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 146]]} + {:process 3 :type :ok :f :txn :value [[:append 3 137]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117]]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 150]]} - {:process 3 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139]]]} + {:process 7 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141]]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 147]]} + {:process 0 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139]]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 148]]} + {:process 4 :type :ok :f :txn :value [[:append 7 143]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 149]]} + {:process 6 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142]]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 150]]} + {:process 3 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141]]]} {:process 3 :type :invoke :f :txn :value [[:append 1 151]]} - {:process 6 :type :ok :f :txn :value [[:append 7 144]]} - {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 7 145]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 152]]} - {:process 6 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117]]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 153]]} - {:process 7 :type :ok :f :txn :value [[:append 6 149]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 154]]} - {:process 1 :type :ok :f :txn :value [[:append 6 147]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 7 144]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 2 145]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 152]]} + {:process 5 :type :ok :f :txn :value [[:append 3 146]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 2 150]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 153]]} + {:process 1 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150]]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 154]]} + {:process 7 :type :ok :f :txn :value [[:append 3 147]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 155]]} + {:process 4 :type :ok :f :txn :value [[:append 6 149]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 0 :type :ok :f :txn :value [[:append 7 148]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 155]]} - {:process 2 :type :ok :f :txn :value [[:append 0 146]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 156]]} + {:process 5 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139]]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 157]]} {:process 3 :type :ok :f :txn :value [[:append 1 151]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 156]]} - {:process 5 :type :ok :f :txn :value [[:append 1 150]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 157]]} - {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118]]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 158]]} - {:process 2 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143]]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 159]]} - {:process 4 :type :ok :f :txn :value [[:append 6 152]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 6 :type :ok :f :txn :value [[:append 5 153]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 160]]} - {:process 7 :type :ok :f :txn :value [[:append 7 154]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153]]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 161]]} - {:process 3 :type :ok :f :txn :value [[:append 0 156]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :ok :f :txn :value [[:append 6 155]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156]]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 162]]} - {:process 3 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154]]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 163]]} - {:process 0 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153]]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 164]]} - {:process 1 :type :ok :f :txn :value [[:append 0 158]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 165]]} - {:process 5 :type :ok :f :txn :value [[:append 6 157]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :ok :f :txn :value [[:append 2 159]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 166]]} - {:process 6 :type :ok :f :txn :value [[:append 6 160]]} - {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154]]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 167]]} - {:process 4 :type :ok :f :txn :value [[:append 4 161]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 168]]} - {:process 6 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143]]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 169]]} - {:process 3 :type :ok :f :txn :value [[:append 6 163]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 170]]} - {:process 0 :type :ok :f :txn :value [[:append 4 164]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 171]]} - {:process 7 :type :ok :f :txn :value [[:append 1 162]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 172]]} - {:process 1 :type :ok :f :txn :value [[:append 7 165]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :ok :f :txn :value [[:append 5 166]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :ok :f :txn :value [[:append 4 167]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 173]]} - {:process 4 :type :ok :f :txn :value [[:append 3 168]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159]]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 174]]} - {:process 2 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167]]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 175]]} - {:process 4 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159]]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 176]]} - {:process 6 :type :ok :f :txn :value [[:append 4 169]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 177]]} - {:process 3 :type :ok :f :txn :value [[:append 5 170]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :ok :f :txn :value [[:append 3 171]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 2 172]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169]]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 178]]} - {:process 0 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172]]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 179]]} - {:process 5 :type :ok :f :txn :value [[:append 5 173]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171]]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 180]]} - {:process 1 :type :ok :f :txn :value [[:append 1 174]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 181]]} - {:process 5 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172]]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 182]]} - {:process 2 :type :ok :f :txn :value [[:append 7 175]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 183]]} - {:process 6 :type :ok :f :txn :value [[:append 1 177]]} - {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 1 176]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 184]]} - {:process 6 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172]]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 185]]} - {:process 7 :type :ok :f :txn :value [[:append 4 180]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 186]]} - {:process 1 :type :ok :f :txn :value [[:append 4 181]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 3 178]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 187]]} - {:process 0 :type :ok :f :txn :value [[:append 1 179]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 188]]} - {:process 2 :type :ok :f :txn :value [[:append 6 183]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :ok :f :txn :value [[:append 3 182]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 189]]} - {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182]]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 190]]} - {:process 4 :type :ok :f :txn :value [[:append 0 184]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179]]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 191]]} - {:process 6 :type :ok :f :txn :value [[:append 7 185]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 192]]} - {:process 7 :type :ok :f :txn :value [[:append 5 186]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185]]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 193]]} - {:process 7 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183]]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 194]]} - {:process 3 :type :ok :f :txn :value [[:append 2 187]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :ok :f :txn :value [[:append 0 188]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 6 190]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 195]]} - {:process 5 :type :ok :f :txn :value [[:append 0 189]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179]]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 196]]} - {:process 0 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185]]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 197]]} - {:process 6 :type :ok :f :txn :value [[:append 0 192]]} - {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179]]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 198]]} - {:process 2 :type :ok :f :txn :value [[:append 0 191]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 199]]} - {:process 6 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186]]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 200]]} - {:process 4 :type :ok :f :txn :value [[:append 6 193]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 201]]} - {:process 7 :type :ok :f :txn :value [[:append 7 194]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 202]]} - {:process 1 :type :ok :f :txn :value [[:append 5 195]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 0 196]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 203]]} - {:process 0 :type :ok :f :txn :value [[:append 6 197]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 204]]} - {:process 1 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196]]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 205]]} - {:process 6 :type :ok :f :txn :value [[:append 6 200]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 206]]} - {:process 5 :type :ok :f :txn :value [[:append 6 198]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 207]]} - {:process 2 :type :ok :f :txn :value [[:append 3 199]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 0 202]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 5 201]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187]]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 208]]} - {:process 7 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179]]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 209]]} - {:process 4 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181]]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 210]]} - {:process 0 :type :ok :f :txn :value [[:append 5 204]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 7 203]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 6 :type :ok :f :txn :value [[:append 3 206]]} - {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 7 205]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 211]]} - {:process 5 :type :ok :f :txn :value [[:append 7 207]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181]]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 212]]} - {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198]]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 213]]} - {:process 6 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181]]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 214]]} - {:process 5 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181]]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 215]]} - {:process 2 :type :ok :f :txn :value [[:append 5 208]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 216]]} - {:process 7 :type :ok :f :txn :value [[:append 2 209]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 217]]} - {:process 4 :type :ok :f :txn :value [[:append 3 210]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 218]]} - {:process 3 :type :ok :f :txn :value [[:append 5 213]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 219]]} - {:process 1 :type :ok :f :txn :value [[:append 2 211]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :ok :f :txn :value [[:append 3 212]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 220]]} - {:process 6 :type :ok :f :txn :value [[:append 1 214]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 221]]} - {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214]]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 222]]} - {:process 5 :type :ok :f :txn :value [[:append 5 215]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 223]]} - {:process 2 :type :ok :f :txn :value [[:append 4 216]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 4 219]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 3 217]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 2 218]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207]]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 224]]} - {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217]]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 225]]} - {:process 7 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219]]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 226]]} - {:process 4 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214]]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 227]]} - {:process 0 :type :ok :f :txn :value [[:append 2 220]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 4 222]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 228]]} - {:process 6 :type :ok :f :txn :value [[:append 2 221]]} - {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :ok :f :txn :value [[:append 2 223]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214]]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 229]]} - {:process 6 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207]]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 230]]} - {:process 5 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217]]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 231]]} - {:process 2 :type :ok :f :txn :value [[:append 6 224]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 232]]} - {:process 7 :type :ok :f :txn :value [[:append 5 226]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 233]]} - {:process 3 :type :ok :f :txn :value [[:append 2 225]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 234]]} - {:process 4 :type :ok :f :txn :value [[:append 0 227]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 235]]} - {:process 1 :type :ok :f :txn :value [[:append 3 228]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :ok :f :txn :value [[:append 0 229]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 236]]} - {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224]]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 237]]} - {:process 5 :type :ok :f :txn :value [[:append 0 231]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 238]]} - {:process 6 :type :ok :f :txn :value [[:append 0 230]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 239]]} - {:process 4 :type :ok :f :txn :value [[:append 7 235]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :ok :f :txn :value [[:append 1 232]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 1 234]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 6 233]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233]]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 240]]} - {:process 2 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230]]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 241]]} - {:process 3 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 158]]} + {:process 4 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126]]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 159]]} + {:process 2 :type :ok :f :txn :value [[:append 5 152]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 4 155]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 1 154]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 160]]} + {:process 6 :type :ok :f :txn :value [[:append 7 153]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155]]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 161]]} + {:process 5 :type :ok :f :txn :value [[:append 1 157]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 162]]} + {:process 3 :type :ok :f :txn :value [[:append 0 158]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 6 156]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152]]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 163]]} + {:process 6 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158]]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 164]]} + {:process 4 :type :ok :f :txn :value [[:append 4 159]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 165]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 166]]} + {:process 0 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152]]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 167]]} + {:process 5 :type :ok :f :txn :value [[:append 6 162]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 4 160]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 7 161]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 168]]} + {:process 5 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161]]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 169]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 170]]} + {:process 3 :type :ok :f :txn :value [[:append 6 166]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 171]]} + {:process 4 :type :ok :f :txn :value [[:append 3 165]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 5 164]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 172]]} + {:process 7 :type :ok :f :txn :value [[:append 6 163]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 173]]} + {:process 4 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150]]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 174]]} + {:process 0 :type :ok :f :txn :value [[:append 4 167]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 175]]} + {:process 2 :type :ok :f :txn :value [[:append 6 168]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 4 169]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 176]]} + {:process 3 :type :ok :f :txn :value [[:append 5 171]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 6 170]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 177]]} + {:process 2 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157]]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 178]]} + {:process 7 :type :ok :f :txn :value [[:append 7 173]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 6 172]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 179]]} + {:process 7 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158]]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 180]]} + {:process 4 :type :ok :f :txn :value [[:append 1 174]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 181]]} + {:process 6 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165]]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 182]]} + {:process 0 :type :ok :f :txn :value [[:append 3 175]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 5 176]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150]]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 183]]} + {:process 2 :type :ok :f :txn :value [[:append 0 178]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 184]]} + {:process 1 :type :ok :f :txn :value [[:append 5 177]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150]]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 185]]} + {:process 3 :type :ok :f :txn :value [[:append 3 179]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 186]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 187]]} + {:process 4 :type :ok :f :txn :value [[:append 0 181]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 1 180]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 188]]} + {:process 6 :type :ok :f :txn :value [[:append 4 182]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 189]]} + {:process 4 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173]]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 190]]} + {:process 2 :type :ok :f :txn :value [[:append 3 184]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 1 183]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 191]]} + {:process 3 :type :ok :f :txn :value [[:append 2 186]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 7 187]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 192]]} + {:process 2 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186]]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 193]]} + {:process 6 :type :ok :f :txn :value [[:append 1 189]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 2 188]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 3 185]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 194]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 195]]} + {:process 4 :type :ok :f :txn :value [[:append 6 190]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 196]]} + {:process 6 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188]]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 197]]} + {:process 7 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185]]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 198]]} + {:process 0 :type :ok :f :txn :value [[:append 0 191]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 5 193]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 199]]} + {:process 1 :type :ok :f :txn :value [[:append 2 192]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187]]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 200]]} + {:process 3 :type :ok :f :txn :value [[:append 0 195]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 201]]} + {:process 4 :type :ok :f :txn :value [[:append 5 196]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 0 194]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 202]]} + {:process 7 :type :ok :f :txn :value [[:append 4 198]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 203]]} + {:process 4 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198]]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 204]]} + {:process 5 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189]]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 205]]} + {:process 6 :type :ok :f :txn :value [[:append 7 197]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 206]]} + {:process 0 :type :ok :f :txn :value [[:append 6 200]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 207]]} + {:process 2 :type :ok :f :txn :value [[:append 4 199]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 7 201]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 4 202]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 208]]} + {:process 5 :type :ok :f :txn :value [[:append 6 205]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 209]]} + {:process 2 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201]]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 210]]} + {:process 7 :type :ok :f :txn :value [[:append 5 203]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 211]]} + {:process 6 :type :ok :f :txn :value [[:append 0 206]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 3 204]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 212]]} + {:process 7 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205]]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 213]]} + {:process 6 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203]]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 214]]} + {:process 0 :type :ok :f :txn :value [[:append 5 207]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 6 210]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 215]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 216]]} + {:process 4 :type :ok :f :txn :value [[:append 2 212]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 5 211]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 217]]} + {:process 5 :type :ok :f :txn :value [[:append 7 209]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 3 208]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189]]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 218]]} + {:process 7 :type :ok :f :txn :value [[:append 7 213]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 219]]} + {:process 5 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202]]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 220]]} + {:process 6 :type :ok :f :txn :value [[:append 6 214]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 221]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 222]]} + {:process 3 :type :ok :f :txn :value [[:append 4 217]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 3 216]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 223]]} + {:process 2 :type :ok :f :txn :value [[:append 1 215]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 3 221]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 224]]} + {:process 4 :type :ok :f :txn :value [[:append 0 218]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 225]]} + {:process 2 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218]]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 226]]} + {:process 1 :type :ok :f :txn :value [[:append 5 222]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 227]]} + {:process 5 :type :ok :f :txn :value [[:append 5 220]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 228]]} + {:process 7 :type :ok :f :txn :value [[:append 0 219]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217]]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 229]]} + {:process 7 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215]]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 230]]} + {:process 0 :type :ok :f :txn :value [[:append 2 223]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 3 226]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 231]]} + {:process 5 :type :ok :f :txn :value [[:append 2 228]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 227]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 7 225]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215]]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 232]]} + {:process 3 :type :ok :f :txn :value [[:append 2 224]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 233]]} + {:process 6 :type :ok :f :txn :value [[:append 1 229]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 234]]} + {:process 5 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226]]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 235]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 236]]} + {:process 4 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214]]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 237]]} + {:process 7 :type :ok :f :txn :value [[:append 2 230]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 238]]} + {:process 0 :type :ok :f :txn :value [[:append 0 232]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 239]]} + {:process 3 :type :ok :f :txn :value [[:append 1 233]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 2 231]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 0 235]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 240]]} + {:process 1 :type :ok :f :txn :value [[:append 2 236]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 241]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235]]]} {:process 3 :type :invoke :f :txn :value [[:append 7 242]]} - {:process 5 :type :ok :f :txn :value [[:append 1 238]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235]]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 243]]} - {:process 1 :type :ok :f :txn :value [[:append 5 237]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 244]]} - {:process 0 :type :ok :f :txn :value [[:append 7 236]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233]]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 245]]} - {:process 6 :type :ok :f :txn :value [[:append 5 239]]} - {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233]]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 246]]} - {:process 6 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233]]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 247]]} + {:process 4 :type :ok :f :txn :value [[:append 5 237]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 243]]} + {:process 6 :type :ok :f :txn :value [[:append 2 234]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237]]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 244]]} + {:process 7 :type :ok :f :txn :value [[:append 3 238]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225]]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 245]]} + {:process 7 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217]]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 246]]} + {:process 0 :type :ok :f :txn :value [[:append 7 239]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 1 241]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 1 240]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 4 243]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214]]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 247]]} + {:process 2 :type :ok :f :txn :value [[:append 4 244]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 248]]} {:process 3 :type :ok :f :txn :value [[:append 7 242]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 248]]} - {:process 4 :type :ok :f :txn :value [[:append 5 240]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 249]]} - {:process 2 :type :ok :f :txn :value [[:append 3 241]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 250]]} - {:process 7 :type :ok :f :txn :value [[:append 0 243]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 251]]} - {:process 5 :type :ok :f :txn :value [[:append 7 245]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 252]]} - {:process 1 :type :ok :f :txn :value [[:append 0 244]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :ok :f :txn :value [[:append 5 246]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 253]]} - {:process 1 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245]]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 254]]} - {:process 6 :type :ok :f :txn :value [[:append 3 247]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 255]]} - {:process 5 :type :ok :f :txn :value [[:append 4 252]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 4 249]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 6 248]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :ok :f :txn :value [[:append 2 250]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 1 251]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246]]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 256]]} - {:process 4 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247]]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 257]]} - {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246]]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 258]]} - {:process 0 :type :ok :f :txn :value [[:append 4 253]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246]]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 259]]} - {:process 1 :type :ok :f :txn :value [[:append 2 254]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 260]]} - {:process 7 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254]]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 261]]} - {:process 0 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247]]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 262]]} - {:process 6 :type :ok :f :txn :value [[:append 4 255]]} - {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 6 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251]]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 263]]} - {:process 2 :type :ok :f :txn :value [[:append 4 259]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 264]]} - {:process 5 :type :ok :f :txn :value [[:append 2 256]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 265]]} - {:process 4 :type :ok :f :txn :value [[:append 2 257]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 266]]} - {:process 3 :type :ok :f :txn :value [[:append 4 258]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 267]]} - {:process 1 :type :ok :f :txn :value [[:append 1 260]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :ok :f :txn :value [[:append 2 262]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 268]]} - {:process 7 :type :ok :f :txn :value [[:append 3 261]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 269]]} - {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258]]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 270]]} - {:process 3 :type :ok :f :txn :value [[:append 3 267]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :ok :f :txn :value [[:append 3 265]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :ok :f :txn :value [[:append 7 264]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 1 266]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 6 :type :ok :f :txn :value [[:append 2 263]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 271]]} - {:process 3 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263]]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 272]]} - {:process 5 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244]]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 273]]} - {:process 0 :type :ok :f :txn :value [[:append 1 268]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248]]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 274]]} - {:process 7 :type :ok :f :txn :value [[:append 4 269]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244]]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 275]]} - {:process 1 :type :ok :f :txn :value [[:append 3 270]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 276]]} - {:process 0 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244]]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 277]]} - {:process 7 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246]]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 278]]} - {:process 2 :type :ok :f :txn :value [[:append 1 274]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 279]]} - {:process 3 :type :ok :f :txn :value [[:append 1 272]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 280]]} - {:process 5 :type :ok :f :txn :value [[:append 1 273]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 281]]} - {:process 6 :type :ok :f :txn :value [[:append 7 271]]} - {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :ok :f :txn :value [[:append 7 277]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 282]]} - {:process 1 :type :ok :f :txn :value [[:append 6 276]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 6 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244]]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 283]]} - {:process 7 :type :ok :f :txn :value [[:append 6 278]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 284]]} - {:process 4 :type :ok :f :txn :value [[:append 7 275]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 285]]} - {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246]]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 286]]} - {:process 2 :type :ok :f :txn :value [[:append 0 279]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :ok :f :txn :value [[:append 6 281]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 0 280]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270]]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 287]]} - {:process 5 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275]]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 288]]} - {:process 0 :type :ok :f :txn :value [[:append 6 282]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275]]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 289]]} - {:process 7 :type :ok :f :txn :value [[:append 7 284]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 6 :type :ok :f :txn :value [[:append 5 283]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 290]]} - {:process 0 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283]]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 291]]} - {:process 4 :type :ok :f :txn :value [[:append 6 285]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280]]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 292]]} - {:process 1 :type :ok :f :txn :value [[:append 0 286]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 293]]} - {:process 4 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283]]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 294]]} - {:process 5 :type :ok :f :txn :value [[:append 4 288]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 295]]} - {:process 2 :type :ok :f :txn :value [[:append 2 287]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 296]]} - {:process 3 :type :ok :f :txn :value [[:append 6 289]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 297]]} - {:process 0 :type :ok :f :txn :value [[:append 4 291]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 298]]} - {:process 6 :type :ok :f :txn :value [[:append 6 290]]} - {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 1 292]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 299]]} - {:process 6 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270]]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 300]]} - {:process 1 :type :ok :f :txn :value [[:append 7 293]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :ok :f :txn :value [[:append 5 295]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 4 294]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 301]]} - {:process 2 :type :ok :f :txn :value [[:append 5 296]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287]]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 302]]} - {:process 3 :type :ok :f :txn :value [[:append 5 297]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :ok :f :txn :value [[:append 3 298]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287]]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 303]]} - {:process 2 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294]]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 304]]} - {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294]]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 305]]} - {:process 0 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287]]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 306]]} - {:process 7 :type :ok :f :txn :value [[:append 2 299]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 6 :type :ok :f :txn :value [[:append 4 300]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 307]]} - {:process 7 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298]]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 308]]} - {:process 1 :type :ok :f :txn :value [[:append 1 302]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 309]]} - {:process 4 :type :ok :f :txn :value [[:append 3 301]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :ok :f :txn :value [[:append 1 306]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 310]]} - {:process 5 :type :ok :f :txn :value [[:append 3 303]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 311]]} - {:process 4 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299]]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 312]]} - {:process 2 :type :ok :f :txn :value [[:append 7 304]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 313]]} - {:process 3 :type :ok :f :txn :value [[:append 3 305]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 314]]} - {:process 6 :type :ok :f :txn :value [[:append 1 307]]} - {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 4 308]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 315]]} - {:process 6 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299]]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 316]]} - {:process 1 :type :ok :f :txn :value [[:append 4 309]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :ok :f :txn :value [[:append 0 310]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 1 312]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 317]]} - {:process 5 :type :ok :f :txn :value [[:append 0 311]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305]]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 318]]} - {:process 0 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304]]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 319]]} - {:process 2 :type :ok :f :txn :value [[:append 6 313]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 2 314]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312]]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 320]]} - {:process 7 :type :ok :f :txn :value [[:append 5 315]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 6 :type :ok :f :txn :value [[:append 7 316]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 321]]} - {:process 2 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312]]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 322]]} - {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312]]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 323]]} - {:process 7 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313]]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 324]]} - {:process 1 :type :ok :f :txn :value [[:append 6 318]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 325]]} - {:process 4 :type :ok :f :txn :value [[:append 0 317]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :ok :f :txn :value [[:append 6 319]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 326]]} - {:process 5 :type :ok :f :txn :value [[:append 6 320]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 327]]} - {:process 4 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316]]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 328]]} - {:process 6 :type :ok :f :txn :value [[:append 0 321]]} - {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 0 323]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 329]]} - {:process 2 :type :ok :f :txn :value [[:append 0 322]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 330]]} - {:process 6 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315]]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 331]]} - {:process 1 :type :ok :f :txn :value [[:append 5 325]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 7 324]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 332]]} - {:process 1 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322]]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 333]]} - {:process 5 :type :ok :f :txn :value [[:append 7 327]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 6 328]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 334]]} - {:process 0 :type :ok :f :txn :value [[:append 5 326]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 7 329]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309]]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 335]]} - {:process 2 :type :ok :f :txn :value [[:append 3 330]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309]]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 336]]} - {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 249]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 250]]} + {:process 5 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214]]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 251]]} + {:process 4 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238]]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 252]]} + {:process 6 :type :ok :f :txn :value [[:append 0 245]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 253]]} + {:process 7 :type :ok :f :txn :value [[:append 5 246]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 254]]} + {:process 2 :type :ok :f :txn :value [[:append 7 248]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 5 247]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 255]]} + {:process 5 :type :ok :f :txn :value [[:append 7 251]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 256]]} + {:process 1 :type :ok :f :txn :value [[:append 3 250]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 257]]} + {:process 4 :type :ok :f :txn :value [[:append 2 252]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 258]]} + {:process 3 :type :ok :f :txn :value [[:append 6 249]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249]]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 259]]} + {:process 6 :type :ok :f :txn :value [[:append 5 253]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 260]]} + {:process 7 :type :ok :f :txn :value [[:append 6 254]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254]]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 261]]} + {:process 7 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251]]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 262]]} + {:process 0 :type :ok :f :txn :value [[:append 4 255]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 4 256]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 6 257]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 1 258]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 1 259]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 263]]} + {:process 3 :type :ok :f :txn :value [[:append 4 260]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 264]]} + {:process 0 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250]]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 265]]} + {:process 5 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253]]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 266]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 267]]} + {:process 4 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245]]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 268]]} + {:process 7 :type :ok :f :txn :value [[:append 0 262]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 269]]} + {:process 6 :type :ok :f :txn :value [[:append 3 261]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 270]]} + {:process 3 :type :ok :f :txn :value [[:append 3 264]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 267]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 271]]} + {:process 0 :type :ok :f :txn :value [[:append 2 265]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 272]]} + {:process 4 :type :ok :f :txn :value [[:append 7 268]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 273]]} + {:process 5 :type :ok :f :txn :value [[:append 2 266]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 274]]} + {:process 2 :type :ok :f :txn :value [[:append 0 263]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266]]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 275]]} + {:process 2 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264]]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 276]]} + {:process 6 :type :ok :f :txn :value [[:append 4 270]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 1 269]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 1 272]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 3 274]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272]]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 277]]} + {:process 4 :type :ok :f :txn :value [[:append 6 273]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 7 271]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266]]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 278]]} + {:process 3 :type :ok :f :txn :value [[:append 1 275]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 279]]} + {:process 0 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263]]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 280]]} + {:process 5 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263]]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 281]]} + {:process 4 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253]]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 282]]} + {:process 1 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266]]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 283]]} + {:process 2 :type :ok :f :txn :value [[:append 2 276]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 284]]} + {:process 6 :type :ok :f :txn :value [[:append 2 277]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 285]]} + {:process 7 :type :ok :f :txn :value [[:append 3 278]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 286]]} + {:process 3 :type :ok :f :txn :value [[:append 0 279]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 1 283]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 287]]} + {:process 5 :type :ok :f :txn :value [[:append 1 281]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 288]]} + {:process 0 :type :ok :f :txn :value [[:append 7 280]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 289]]} + {:process 4 :type :ok :f :txn :value [[:append 4 282]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 290]]} + {:process 2 :type :ok :f :txn :value [[:append 5 284]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 291]]} + {:process 2 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282]]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 292]]} + {:process 7 :type :ok :f :txn :value [[:append 4 286]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 7 285]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284]]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 293]]} + {:process 4 :type :ok :f :txn :value [[:append 3 290]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 6 289]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279]]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 294]]} + {:process 5 :type :ok :f :txn :value [[:append 6 288]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 6 291]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 295]]} + {:process 1 :type :ok :f :txn :value [[:append 4 287]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277]]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 296]]} + {:process 0 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284]]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 297]]} + {:process 5 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285]]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 298]]} + {:process 2 :type :ok :f :txn :value [[:append 7 292]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 299]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 300]]} + {:process 6 :type :ok :f :txn :value [[:append 5 294]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 301]]} + {:process 7 :type :ok :f :txn :value [[:append 6 293]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 302]]} + {:process 3 :type :ok :f :txn :value [[:append 5 295]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 4 297]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 303]]} + {:process 2 :type :ok :f :txn :value [[:append 6 299]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 1 296]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 304]]} + {:process 5 :type :ok :f :txn :value [[:append 4 298]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 305]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 306]]} + {:process 2 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296]]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 307]]} + {:process 1 :type :ok :f :txn :value [[:append 6 300]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 308]]} + {:process 7 :type :ok :f :txn :value [[:append 7 302]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 6 301]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 3 303]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279]]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 309]]} + {:process 6 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303]]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 310]]} + {:process 3 :type :ok :f :txn :value [[:append 3 306]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 311]]} + {:process 5 :type :ok :f :txn :value [[:append 5 305]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 0 304]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277]]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 312]]} + {:process 5 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277]]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 313]]} + {:process 4 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302]]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 314]]} + {:process 1 :type :ok :f :txn :value [[:append 5 308]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 0 307]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 315]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 316]]} + {:process 7 :type :ok :f :txn :value [[:append 1 309]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 317]]} + {:process 3 :type :ok :f :txn :value [[:append 2 311]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 4 310]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 318]]} + {:process 4 :type :ok :f :txn :value [[:append 6 314]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 319]]} + {:process 0 :type :ok :f :txn :value [[:append 1 312]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 320]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 321]]} + {:process 5 :type :ok :f :txn :value [[:append 3 313]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 322]]} + {:process 2 :type :ok :f :txn :value [[:append 3 315]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311]]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 323]]} + {:process 6 :type :ok :f :txn :value [[:append 1 318]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 2 317]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 7 316]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 324]]} + {:process 6 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317]]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 325]]} + {:process 7 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315]]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 326]]} + {:process 0 :type :ok :f :txn :value [[:append 0 320]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 0 322]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 5 319]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 0 321]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 327]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316]]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 328]]} + {:process 2 :type :ok :f :txn :value [[:append 5 323]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 329]]} + {:process 5 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318]]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 330]]} + {:process 4 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310]]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 331]]} + {:process 1 :type :ok :f :txn :value [[:append 2 324]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 4 326]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 332]]} + {:process 6 :type :ok :f :txn :value [[:append 7 325]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 333]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 334]]} + {:process 3 :type :ok :f :txn :value [[:append 7 327]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 6 328]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 335]]} + {:process 2 :type :ok :f :txn :value [[:append 4 329]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 6 330]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 336]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330]]]} {:process 3 :type :invoke :f :txn :value [[:append 5 337]]} - {:process 6 :type :ok :f :txn :value [[:append 6 331]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 338]]} - {:process 2 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299 314]]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 339]]} - {:process 7 :type :ok :f :txn :value [[:append 0 332]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 7 333]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 340]]} - {:process 4 :type :ok :f :txn :value [[:append 5 334]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312]]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 341]]} - {:process 4 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309]]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 342]]} - {:process 0 :type :ok :f :txn :value [[:append 3 336]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 343]]} - {:process 5 :type :ok :f :txn :value [[:append 5 335]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 344]]} - {:process 6 :type :ok :f :txn :value [[:append 3 338]]} - {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 3 331]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 338]]} + {:process 2 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327]]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 339]]} + {:process 7 :type :ok :f :txn :value [[:append 5 332]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 0 333]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330]]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 340]]} + {:process 1 :type :ok :f :txn :value [[:append 4 334]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 341]]} + {:process 6 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332]]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 342]]} + {:process 0 :type :ok :f :txn :value [[:append 5 335]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 7 336]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 2 338]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 6 339]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 343]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 344]]} {:process 3 :type :ok :f :txn :value [[:append 5 337]]} {:process 3 :type :invoke :f :txn :value [[:append 4 345]]} - {:process 2 :type :ok :f :txn :value [[:append 5 339]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 346]]} - {:process 6 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309]]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 347]]} - {:process 1 :type :ok :f :txn :value [[:append 2 340]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 2 341]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 348]]} - {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312]]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 349]]} - {:process 0 :type :ok :f :txn :value [[:append 2 343]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 3 342]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 350]]} + {:process 5 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334]]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 346]]} + {:process 4 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318]]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 347]]} + {:process 1 :type :ok :f :txn :value [[:append 3 341]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 7 340]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 348]]} + {:process 6 :type :ok :f :txn :value [[:append 6 342]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 349]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 350]]} + {:process 0 :type :ok :f :txn :value [[:append 3 344]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 351]]} + {:process 2 :type :ok :f :txn :value [[:append 1 343]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 5 346]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 352]]} {:process 3 :type :ok :f :txn :value [[:append 4 345]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :ok :f :txn :value [[:append 2 344]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312]]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 351]]} - {:process 2 :type :ok :f :txn :value [[:append 4 346]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342]]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 352]]} - {:process 5 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342]]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 353]]} - {:process 6 :type :ok :f :txn :value [[:append 1 347]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 354]]} - {:process 7 :type :ok :f :txn :value [[:append 3 348]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333]]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 355]]} - {:process 1 :type :ok :f :txn :value [[:append 4 349]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 356]]} - {:process 7 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349]]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 357]]} - {:process 4 :type :ok :f :txn :value [[:append 2 350]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :ok :f :txn :value [[:append 0 351]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 358]]} - {:process 4 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347]]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 359]]} - {:process 3 :type :ok :f :txn :value [[:append 2 352]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 360]]} - {:process 5 :type :ok :f :txn :value [[:append 0 353]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 361]]} - {:process 6 :type :ok :f :txn :value [[:append 2 354]]} - {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :ok :f :txn :value [[:append 6 355]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 362]]} - {:process 1 :type :ok :f :txn :value [[:append 3 356]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 5 357]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 363]]} - {:process 6 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333]]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 364]]} - {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355]]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 365]]} - {:process 0 :type :ok :f :txn :value [[:append 7 358]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 0 359]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 366]]} - {:process 5 :type :ok :f :txn :value [[:append 1 361]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 1 360]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355]]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 367]]} - {:process 2 :type :ok :f :txn :value [[:append 1 362]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355]]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 368]]} - {:process 7 :type :ok :f :txn :value [[:append 6 363]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359]]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 369]]} - {:process 2 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359]]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 370]]} - {:process 1 :type :ok :f :txn :value [[:append 5 365]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 371]]} - {:process 6 :type :ok :f :txn :value [[:append 0 364]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 372]]} - {:process 7 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358]]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 373]]} - {:process 4 :type :ok :f :txn :value [[:append 7 366]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :ok :f :txn :value [[:append 7 368]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 374]]} - {:process 0 :type :ok :f :txn :value [[:append 5 367]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 375]]} - {:process 4 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363]]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 376]]} - {:process 1 :type :ok :f :txn :value [[:append 0 371]]} + {:process 4 :type :ok :f :txn :value [[:append 0 347]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 353]]} + {:process 2 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347]]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 354]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 355]]} + {:process 7 :type :ok :f :txn :value [[:append 0 348]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 3 349]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343]]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 356]]} + {:process 6 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345]]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 357]]} + {:process 0 :type :ok :f :txn :value [[:append 2 351]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 2 352]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 5 350]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 358]]} + {:process 4 :type :ok :f :txn :value [[:append 7 353]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 2 355]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 359]]} + {:process 0 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343]]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 360]]} + {:process 5 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349]]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 361]]} + {:process 2 :type :ok :f :txn :value [[:append 3 354]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 362]]} + {:process 4 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342]]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 363]]} + {:process 6 :type :ok :f :txn :value [[:append 1 357]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 364]]} + {:process 7 :type :ok :f :txn :value [[:append 2 356]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 365]]} + {:process 1 :type :ok :f :txn :value [[:append 0 358]]} {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 1 359]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 2 362]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 0 361]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 366]]} + {:process 0 :type :ok :f :txn :value [[:append 0 360]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 367]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 368]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360]]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 369]]} + {:process 2 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350]]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 370]]} + {:process 4 :type :ok :f :txn :value [[:append 5 363]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 371]]} + {:process 6 :type :ok :f :txn :value [[:append 2 364]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 1 366]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 3 365]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353]]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 372]]} + {:process 0 :type :ok :f :txn :value [[:append 7 367]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342]]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 373]]} {:process 3 :type :ok :f :txn :value [[:append 7 369]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 377]]} - {:process 6 :type :ok :f :txn :value [[:append 5 372]]} - {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :ok :f :txn :value [[:append 3 370]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 378]]} - {:process 7 :type :ok :f :txn :value [[:append 0 373]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 379]]} - {:process 1 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369]]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 380]]} - {:process 6 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363]]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 381]]} - {:process 5 :type :ok :f :txn :value [[:append 4 374]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372]]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 382]]} - {:process 2 :type :ok :f :txn :value [[:append 2 378]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 6 377]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :ok :f :txn :value [[:append 4 375]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 5 376]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 383]]} - {:process 2 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376]]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 384]]} - {:process 1 :type :ok :f :txn :value [[:append 2 380]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 385]]} - {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376]]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 386]]} - {:process 6 :type :ok :f :txn :value [[:append 3 381]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 387]]} - {:process 7 :type :ok :f :txn :value [[:append 1 379]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381]]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 388]]} - {:process 7 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299 314 340 341 343 344 350 352 354 378 380]]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 389]]} - {:process 5 :type :ok :f :txn :value [[:append 2 382]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 390]]} - {:process 1 :type :ok :f :txn :value [[:append 1 385]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 374]]} + {:process 1 :type :ok :f :txn :value [[:append 2 368]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 375]]} + {:process 7 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345]]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 376]]} + {:process 4 :type :ok :f :txn :value [[:append 4 371]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342]]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 377]]} + {:process 2 :type :ok :f :txn :value [[:append 4 370]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 378]]} + {:process 4 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365]]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 379]]} + {:process 6 :type :ok :f :txn :value [[:append 0 372]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 380]]} + {:process 7 :type :ok :f :txn :value [[:append 5 376]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 381]]} + {:process 2 :type :ok :f :txn :value [[:append 7 378]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 7 373]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 382]]} + {:process 0 :type :ok :f :txn :value [[:append 5 377]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 383]]} + {:process 3 :type :ok :f :txn :value [[:append 6 374]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 1 375]]} {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 6 :type :ok :f :txn :value [[:append 4 387]]} - {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 2 379]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 384]]} + {:process 2 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374]]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 385]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 386]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 387]]} + {:process 6 :type :ok :f :txn :value [[:append 5 380]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374]]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 388]]} + {:process 0 :type :ok :f :txn :value [[:append 4 383]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 4 382]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 6 381]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 3 387]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 389]]} + {:process 0 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387]]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 390]]} + {:process 5 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380]]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 391]]} {:process 3 :type :ok :f :txn :value [[:append 4 386]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 391]]} - {:process 2 :type :ok :f :txn :value [[:append 4 384]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 392]]} - {:process 4 :type :ok :f :txn :value [[:append 4 383]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 3 389]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 393]]} - {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383]]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 394]]} - {:process 0 :type :ok :f :txn :value [[:append 2 388]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 395]]} - {:process 6 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385]]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 396]]} - {:process 4 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389]]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 397]]} - {:process 5 :type :ok :f :txn :value [[:append 3 390]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373]]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 398]]} - {:process 2 :type :ok :f :txn :value [[:append 7 392]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 3 391]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 6 :type :ok :f :txn :value [[:append 2 396]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 399]]} - {:process 4 :type :ok :f :txn :value [[:append 2 397]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 400]]} - {:process 7 :type :ok :f :txn :value [[:append 4 393]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 3 394]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 401]]} - {:process 0 :type :ok :f :txn :value [[:append 1 395]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377]]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 402]]} - {:process 3 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299 314 340 341 343 344 350 352 354 378 380 382 388 396 397]]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 403]]} - {:process 7 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376]]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 404]]} - {:process 0 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373]]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 405]]} - {:process 5 :type :ok :f :txn :value [[:append 1 398]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 406]]} - {:process 2 :type :ok :f :txn :value [[:append 1 402]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 407]]} - {:process 1 :type :ok :f :txn :value [[:append 6 401]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 1 400]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 1 403]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 408]]} - {:process 6 :type :ok :f :txn :value [[:append 7 399]]} - {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376]]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 409]]} - {:process 0 :type :ok :f :txn :value [[:append 7 405]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 410]]} - {:process 7 :type :ok :f :txn :value [[:append 6 404]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 411]]} - {:process 4 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373]]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 412]]} - {:process 6 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373]]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 413]]} - {:process 5 :type :ok :f :txn :value [[:append 6 406]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :ok :f :txn :value [[:append 0 407]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405]]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 414]]} - {:process 3 :type :ok :f :txn :value [[:append 0 408]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394]]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 415]]} - {:process 7 :type :ok :f :txn :value [[:append 7 411]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 6 :type :ok :f :txn :value [[:append 5 413]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 416]]} - {:process 4 :type :ok :f :txn :value [[:append 7 412]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 417]]} - {:process 3 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405 411 412]]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 418]]} - {:process 0 :type :ok :f :txn :value [[:append 6 410]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 0 409]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 419]]} - {:process 7 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373 407 408 409]]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 420]]} - {:process 0 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413]]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 421]]} - {:process 5 :type :ok :f :txn :value [[:append 4 414]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 422]]} - {:process 1 :type :ok :f :txn :value [[:append 7 419]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 6 417]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 6 :type :ok :f :txn :value [[:append 6 416]]} - {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 6 418]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 423]]} - {:process 2 :type :ok :f :txn :value [[:append 2 415]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 424]]} - {:process 1 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299 314 340 341 343 344 350 352 354 378 380 382 388 396 397 415]]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 425]]} - {:process 4 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413]]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 426]]} - {:process 6 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394]]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 427]]} - {:process 0 :type :ok :f :txn :value [[:append 4 421]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 428]]} - {:process 5 :type :ok :f :txn :value [[:append 5 422]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 1 420]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 429]]} - {:process 5 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299 314 340 341 343 344 350 352 354 378 380 382 388 396 397 415]]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 430]]} - {:process 2 :type :ok :f :txn :value [[:append 5 424]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 5 423]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421]]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 431]]} - {:process 6 :type :ok :f :txn :value [[:append 4 427]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 432]]} - {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427]]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 433]]} - {:process 7 :type :ok :f :txn :value [[:append 2 429]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 1 425]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 434]]} - {:process 0 :type :ok :f :txn :value [[:append 3 428]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 4 426]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 435]]} - {:process 7 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428]]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 436]]} - {:process 5 :type :ok :f :txn :value [[:append 3 430]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 437]]} - {:process 0 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299 314 340 341 343 344 350 352 354 378 380 382 388 396 397 415 429]]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 438]]} - {:process 6 :type :ok :f :txn :value [[:append 1 432]]} - {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :ok :f :txn :value [[:append 7 431]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 439]]} - {:process 1 :type :ok :f :txn :value [[:append 4 434]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 3 433]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 440]]} - {:process 5 :type :ok :f :txn :value [[:append 0 437]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 6 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299 314 340 341 343 344 350 352 354 378 380 382 388 396 397 415 429]]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 441]]} - {:process 7 :type :ok :f :txn :value [[:append 4 436]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 442]]} - {:process 4 :type :ok :f :txn :value [[:append 3 435]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435]]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 443]]} - {:process 0 :type :ok :f :txn :value [[:append 1 438]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 444]]} - {:process 5 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438]]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 445]]} - {:process 4 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299 314 340 341 343 344 350 352 354 378 380 382 388 396 397 415 429]]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 446]]} - {:process 2 :type :ok :f :txn :value [[:append 6 439]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 392]]} + {:process 2 :type :ok :f :txn :value [[:append 1 385]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 393]]} + {:process 4 :type :ok :f :txn :value [[:append 1 384]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373]]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 394]]} + {:process 4 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372]]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 395]]} + {:process 6 :type :ok :f :txn :value [[:append 3 388]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 396]]} + {:process 3 :type :ok :f :txn :value [[:append 3 392]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 2 391]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 397]]} + {:process 2 :type :ok :f :txn :value [[:append 0 393]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 2 390]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 398]]} + {:process 1 :type :ok :f :txn :value [[:append 6 389]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 0 394]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 399]]} + {:process 3 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390]]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 400]]} + {:process 2 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392]]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 401]]} + {:process 4 :type :ok :f :txn :value [[:append 7 395]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 402]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 403]]} + {:process 6 :type :ok :f :txn :value [[:append 4 396]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 3 397]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 1 398]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398]]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 404]]} + {:process 4 :type :ok :f :txn :value [[:append 6 402]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394]]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 405]]} + {:process 3 :type :ok :f :txn :value [[:append 1 400]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 406]]} + {:process 0 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394]]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 407]]} + {:process 2 :type :ok :f :txn :value [[:append 2 401]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 408]]} + {:process 7 :type :ok :f :txn :value [[:append 1 399]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380]]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 409]]} + {:process 1 :type :ok :f :txn :value [[:append 0 403]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 410]]} + {:process 7 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401]]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 411]]} + {:process 5 :type :ok :f :txn :value [[:append 1 405]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 412]]} + {:process 3 :type :ok :f :txn :value [[:append 0 406]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 7 407]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 413]]} + {:process 6 :type :ok :f :txn :value [[:append 2 404]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 414]]} + {:process 2 :type :ok :f :txn :value [[:append 5 408]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 7 410]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 4 409]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 415]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 416]]} + {:process 2 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409]]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 417]]} + {:process 1 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404]]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 418]]} + {:process 7 :type :ok :f :txn :value [[:append 3 411]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 419]]} + {:process 5 :type :ok :f :txn :value [[:append 6 412]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 6 413]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 7 414]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414]]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 420]]} + {:process 4 :type :ok :f :txn :value [[:append 3 415]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 6 416]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 421]]} + {:process 0 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408]]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 422]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 423]]} + {:process 5 :type :fail :f :txn :value [[:append 4 420]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 424]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 425]]} + {:process 3 :type :fail :f :txn :value [[:append 5 421]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 422]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 426]]} + {:process 1 :type :info :f :txn :value [[:append 1 418]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 427]]} + {:process 7 :type :info :f :txn :value [[:append 4 419]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :info :f :txn :value [[:append 7 417]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 428]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 429]]} + {:process 7 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408]]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 430]]} + {:process 4 :type :ok :f :txn :value [[:append 1 425]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 431]]} + {:process 6 :type :ok :f :txn :value [[:append 5 423]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 432]]} + {:process 5 :type :ok :f :txn :value [[:append 5 424]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 4 427]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 3 426]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404]]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 433]]} + {:process 3 :type :ok :f :txn :value [[:append 3 429]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 434]]} + {:process 2 :type :ok :f :txn :value [[:append 6 428]]} {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 2 440]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 435]]} + {:process 0 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404]]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 436]]} + {:process 7 :type :ok :f :txn :value [[:append 6 430]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 437]]} + {:process 2 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425]]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 438]]} + {:process 4 :type :ok :f :txn :value [[:append 0 431]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 6 432]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417]]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 439]]} + {:process 6 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429]]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 440]]} + {:process 5 :type :ok :f :txn :value [[:append 3 433]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 441]]} + {:process 1 :type :ok :f :txn :value [[:append 6 435]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 442]]} + {:process 3 :type :ok :f :txn :value [[:append 2 434]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 6 :type :ok :f :txn :value [[:append 7 441]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 447]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 443]]} + {:process 0 :type :ok :f :txn :value [[:append 1 436]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 444]]} + {:process 7 :type :ok :f :txn :value [[:append 7 437]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 0 438]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 445]]} + {:process 6 :type :ok :f :txn :value [[:append 4 440]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 446]]} + {:process 1 :type :ok :f :txn :value [[:append 5 442]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 6 439]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 447]]} + {:process 5 :type :ok :f :txn :value [[:append 0 441]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441]]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 448]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 449]]} + {:process 5 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436]]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 450]]} + {:process 3 :type :ok :f :txn :value [[:append 0 443]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 451]]} {:process 0 :type :ok :f :txn :value [[:append 0 444]]} {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 5 442]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438]]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 448]]} - {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438]]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 449]]} - {:process 5 :type :ok :f :txn :value [[:append 6 445]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 450]]} - {:process 1 :type :ok :f :txn :value [[:append 6 443]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 451]]} - {:process 0 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405 411 412 419 431 441]]]} + {:process 6 :type :ok :f :txn :value [[:append 1 446]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 3 445]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437]]]} {:process 0 :type :invoke :f :txn :value [[:append 6 452]]} - {:process 7 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443]]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 453]]} - {:process 4 :type :ok :f :txn :value [[:append 1 446]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 454]]} - {:process 2 :type :ok :f :txn :value [[:append 0 448]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 455]]} - {:process 6 :type :ok :f :txn :value [[:append 0 447]]} - {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 6 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442]]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 456]]} - {:process 3 :type :ok :f :txn :value [[:append 0 449]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 457]]} - {:process 1 :type :ok :f :txn :value [[:append 5 451]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 7 453]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 458]]} + {:process 4 :type :ok :f :txn :value [[:append 5 447]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434]]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 453]]} + {:process 7 :type :ok :f :txn :value [[:append 1 448]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 454]]} + {:process 2 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434]]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 455]]} + {:process 4 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440]]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 456]]} + {:process 1 :type :ok :f :txn :value [[:append 7 449]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 457]]} + {:process 3 :type :ok :f :txn :value [[:append 7 451]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 6 450]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 458]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 459]]} + {:process 6 :type :ok :f :txn :value [[:append 7 453]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 460]]} {:process 0 :type :ok :f :txn :value [[:append 6 452]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 459]]} - {:process 5 :type :ok :f :txn :value [[:append 7 450]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 461]]} + {:process 7 :type :ok :f :txn :value [[:append 2 454]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 2 457]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 3 456]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 462]]} + {:process 7 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456]]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 463]]} + {:process 5 :type :ok :f :txn :value [[:append 7 458]]} {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 0 454]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :ok :f :txn :value [[:append 3 455]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373 407 408 409 437 444 448 447 449 454]]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 460]]} - {:process 5 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436]]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 461]]} - {:process 4 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405 411 412 419 431 441 453 450]]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 462]]} - {:process 2 :type :ok :f :txn :value [[:r 2 [10 13 18 22 26 36 64 84 85 87 90 93 98 104 113 126 128 131 133 139 159 172 187 209 211 218 220 221 223 225 250 254 256 257 262 263 287 299 314 340 341 343 344 350 352 354 378 380 382 388 396 397 415 429 440]]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 463]]} - {:process 6 :type :ok :f :txn :value [[:append 6 456]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 464]]} - {:process 0 :type :ok :f :txn :value [[:append 5 459]]} + {:process 2 :type :ok :f :txn :value [[:append 5 455]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 464]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 465]]} + {:process 3 :type :ok :f :txn :value [[:append 5 459]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 466]]} + {:process 6 :type :ok :f :txn :value [[:append 0 460]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440]]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 467]]} + {:process 0 :type :ok :f :txn :value [[:append 5 461]]} {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :ok :f :txn :value [[:append 0 458]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :ok :f :txn :value [[:append 7 457]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436]]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 465]]} - {:process 4 :type :ok :f :txn :value [[:append 6 462]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 466]]} - {:process 7 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446]]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 467]]} - {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462]]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 468]]} - {:process 2 :type :ok :f :txn :value [[:append 5 463]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 469]]} - {:process 1 :type :ok :f :txn :value [[:append 7 460]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 470]]} - {:process 5 :type :ok :f :txn :value [[:append 5 461]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 471]]} - {:process 6 :type :ok :f :txn :value [[:append 3 464]]} - {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 6 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436]]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 472]]} - {:process 0 :type :ok :f :txn :value [[:append 3 465]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 473]]} - {:process 2 :type :ok :f :txn :value [[:append 4 469]]} + {:process 6 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461]]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 468]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 469]]} + {:process 7 :type :ok :f :txn :value [[:append 4 463]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 470]]} + {:process 4 :type :ok :f :txn :value [[:append 2 462]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 4 464]]} {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :ok :f :txn :value [[:append 5 466]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 1 472]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 474]]} - {:process 0 :type :fail :f :txn :value [[:append 2 473]]} + {:process 1 :type :ok :f :txn :value [[:append 4 465]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 471]]} + {:process 4 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448]]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 472]]} + {:process 3 :type :ok :f :txn :value [[:append 4 466]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458]]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 473]]} + {:process 5 :type :ok :f :txn :value [[:append 5 467]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 474]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 475]]} + {:process 6 :type :ok :f :txn :value [[:append 6 468]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 476]]} + {:process 0 :type :ok :f :txn :value [[:append 3 469]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 477]]} + {:process 7 :type :ok :f :txn :value [[:append 5 470]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468]]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 478]]} + {:process 2 :type :ok :f :txn :value [[:append 6 473]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 479]]} + {:process 4 :type :ok :f :txn :value [[:append 0 472]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 480]]} + {:process 1 :type :ok :f :txn :value [[:append 3 471]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 2 477]]} {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 475]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 476]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 477]]} - {:process 0 :type :fail :f :txn :value [[:append 0 477]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 478]]} - {:process 0 :type :fail :f :txn :value [[:append 7 478]]} + {:process 6 :type :ok :f :txn :value [[:append 3 476]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 2 475]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 481]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 482]]} + {:process 5 :type :ok :f :txn :value [[:append 2 474]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448]]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 483]]} + {:process 6 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466]]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 484]]} + {:process 5 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476]]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 485]]} + {:process 7 :type :ok :f :txn :value [[:append 7 478]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 486]]} + {:process 2 :type :ok :f :txn :value [[:append 1 479]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 7 480]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472]]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 487]]} + {:process 4 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473]]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 488]]} + {:process 1 :type :ok :f :txn :value [[:append 5 482]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 489]]} + {:process 3 :type :ok :f :txn :value [[:append 1 481]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 0 486]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486]]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 490]]} + {:process 0 :type :ok :f :txn :value [[:append 0 483]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 491]]} + {:process 5 :type :ok :f :txn :value [[:append 0 485]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 492]]} + {:process 6 :type :ok :f :txn :value [[:append 1 484]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 493]]} + {:process 7 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484]]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 494]]} + {:process 2 :type :ok :f :txn :value [[:append 3 487]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 495]]} + {:process 4 :type :ok :f :txn :value [[:append 5 488]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 496]]} + {:process 1 :type :ok :f :txn :value [[:append 0 489]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 7 491]]} {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 479]]} - {:process 0 :type :fail :f :txn :value [[:append 5 479]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 480]]} - {:process 0 :type :fail :f :txn :value [[:append 4 480]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 481]]} - {:process 0 :type :fail :f :txn :value [[:append 2 481]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 482]]} - {:process 0 :type :fail :f :txn :value [[:append 1 482]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 483]]} - {:process 0 :type :fail :f :txn :value [[:append 7 483]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 484]]} - {:process 0 :type :fail :f :txn :value [[:append 6 484]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 485]]} - {:process 0 :type :fail :f :txn :value [[:append 4 485]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 486]]} - {:process 0 :type :fail :f :txn :value [[:append 3 486]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 487]]} - {:process 0 :type :fail :f :txn :value [[:append 1 487]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 488]]} - {:process 0 :type :fail :f :txn :value [[:append 0 488]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 489]]} - {:process 0 :type :fail :f :txn :value [[:append 6 489]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 490]]} - {:process 0 :type :fail :f :txn :value [[:append 5 490]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 491]]} - {:process 0 :type :fail :f :txn :value [[:append 3 491]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 492]]} - {:process 0 :type :fail :f :txn :value [[:append 2 492]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 493]]} - {:process 6 :type :fail :f :txn :value [[:append 2 474]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 497]]} + {:process 3 :type :ok :f :txn :value [[:append 7 490]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 498]]} + {:process 0 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473]]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 499]]} + {:process 6 :type :ok :f :txn :value [[:append 2 493]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 494]]} - {:process 6 :type :fail :f :txn :value [[:append 0 494]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 495]]} - {:process 6 :type :fail :f :txn :value [[:append 5 495]]} + {:process 7 :type :ok :f :txn :value [[:append 2 494]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 500]]} + {:process 5 :type :ok :f :txn :value [[:append 1 492]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 2 495]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 4 496]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490]]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 501]]} + {:process 5 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473]]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 502]]} + {:process 2 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488]]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 503]]} + {:process 4 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487]]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 504]]} + {:process 1 :type :ok :f :txn :value [[:append 2 497]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 505]]} + {:process 0 :type :ok :f :txn :value [[:append 5 499]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 506]]} + {:process 3 :type :ok :f :txn :value [[:append 6 498]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 3 500]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 507]]} + {:process 5 :type :ok :f :txn :value [[:append 7 502]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 508]]} + {:process 7 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496]]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 509]]} + {:process 6 :type :ok :f :txn :value [[:append 0 501]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 510]]} + {:process 4 :type :ok :f :txn :value [[:append 2 504]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 511]]} + {:process 2 :type :ok :f :txn :value [[:append 4 503]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 512]]} + {:process 0 :type :ok :f :txn :value [[:append 4 506]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 1 505]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 4 508]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500]]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 513]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 514]]} + {:process 3 :type :ok :f :txn :value [[:append 4 507]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 515]]} + {:process 5 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499]]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 516]]} + {:process 7 :type :ok :f :txn :value [[:append 5 509]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 517]]} + {:process 6 :type :ok :f :txn :value [[:append 5 510]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 496]]} - {:process 6 :type :fail :f :txn :value [[:append 3 496]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 497]]} - {:process 6 :type :fail :f :txn :value [[:append 4 497]]} + {:process 4 :type :ok :f :txn :value [[:append 1 511]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 7 512]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498]]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 518]]} + {:process 4 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501]]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 519]]} + {:process 2 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498]]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 520]]} + {:process 1 :type :ok :f :txn :value [[:append 3 514]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 521]]} + {:process 3 :type :ok :f :txn :value [[:append 3 515]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 2 513]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 522]]} + {:process 5 :type :ok :f :txn :value [[:append 2 516]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 523]]} + {:process 7 :type :ok :f :txn :value [[:append 6 517]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516]]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 524]]} + {:process 7 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512]]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 525]]} + {:process 6 :type :ok :f :txn :value [[:append 3 518]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 526]]} + {:process 2 :type :ok :f :txn :value [[:append 1 520]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 527]]} + {:process 4 :type :ok :f :txn :value [[:append 7 519]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 528]]} + {:process 5 :type :ok :f :txn :value [[:append 3 523]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 6 521]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 1 522]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501]]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 529]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 530]]} + {:process 7 :type :ok :f :txn :value [[:append 0 525]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 531]]} + {:process 6 :type :ok :f :txn :value [[:append 4 526]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 498]]} - {:process 6 :type :fail :f :txn :value [[:append 2 498]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 499]]} - {:process 6 :type :fail :f :txn :value [[:append 7 499]]} + {:process 3 :type :ok :f :txn :value [[:append 1 524]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 532]]} + {:process 0 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525]]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 533]]} + {:process 2 :type :ok :f :txn :value [[:append 0 527]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524]]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 534]]} + {:process 4 :type :ok :f :txn :value [[:append 6 528]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523]]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 535]]} + {:process 4 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510]]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 536]]} + {:process 5 :type :ok :f :txn :value [[:append 1 529]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 537]]} + {:process 1 :type :ok :f :txn :value [[:append 0 530]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 538]]} + {:process 7 :type :ok :f :txn :value [[:append 1 531]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 0 532]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 7 533]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 539]]} + {:process 7 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516]]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 540]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 541]]} + {:process 6 :type :ok :f :txn :value [[:append 2 534]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 542]]} + {:process 4 :type :ok :f :txn :value [[:append 4 536]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 543]]} + {:process 1 :type :ok :f :txn :value [[:append 7 538]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 6 537]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 2 535]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 544]]} + {:process 3 :type :ok :f :txn :value [[:append 6 541]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 545]]} + {:process 1 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535]]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 546]]} + {:process 5 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538]]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 547]]} + {:process 6 :type :ok :f :txn :value [[:append 7 542]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 500]]} - {:process 6 :type :fail :f :txn :value [[:append 5 500]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 501]]} - {:process 6 :type :fail :f :txn :value [[:append 6 501]]} + {:process 0 :type :ok :f :txn :value [[:append 6 539]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 3 540]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 548]]} + {:process 6 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532]]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 549]]} + {:process 0 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510]]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 550]]} + {:process 2 :type :ok :f :txn :value [[:append 5 544]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 3 543]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536]]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 551]]} + {:process 1 :type :ok :f :txn :value [[:append 1 546]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 552]]} + {:process 3 :type :ok :f :txn :value [[:append 5 545]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535]]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 553]]} + {:process 7 :type :ok :f :txn :value [[:append 4 548]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 4 547]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 554]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 555]]} + {:process 7 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545]]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 556]]} + {:process 6 :type :ok :f :txn :value [[:append 5 549]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 557]]} + {:process 0 :type :ok :f :txn :value [[:append 4 550]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 558]]} + {:process 4 :type :ok :f :txn :value [[:append 1 553]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 559]]} + {:process 2 :type :ok :f :txn :value [[:append 7 551]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 560]]} + {:process 1 :type :ok :f :txn :value [[:append 4 552]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 6 557]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 502]]} - {:process 6 :type :fail :f :txn :value [[:append 4 502]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 503]]} - {:process 6 :type :fail :f :txn :value [[:append 1 503]]} + {:process 5 :type :ok :f :txn :value [[:append 5 554]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 3 555]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 561]]} + {:process 7 :type :ok :f :txn :value [[:append 6 556]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 562]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 563]]} + {:process 0 :type :ok :f :txn :value [[:append 3 558]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558]]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 564]]} + {:process 5 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535]]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 565]]} + {:process 0 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535]]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 566]]} + {:process 4 :type :ok :f :txn :value [[:append 0 559]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 6 560]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551]]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 567]]} + {:process 2 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553]]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 568]]} + {:process 6 :type :ok :f :txn :value [[:append 4 564]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 569]]} + {:process 7 :type :ok :f :txn :value [[:append 7 562]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 6 563]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 570]]} + {:process 3 :type :ok :f :txn :value [[:append 2 561]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559]]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 571]]} + {:process 0 :type :ok :f :txn :value [[:append 1 566]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 572]]} + {:process 5 :type :ok :f :txn :value [[:append 3 565]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 573]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 574]]} + {:process 4 :type :ok :f :txn :value [[:append 6 567]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 575]]} + {:process 2 :type :ok :f :txn :value [[:append 0 568]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 576]]} + {:process 6 :type :ok :f :txn :value [[:append 1 569]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 504]]} - {:process 6 :type :fail :f :txn :value [[:append 7 504]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 505]]} - {:process 6 :type :fail :f :txn :value [[:append 0 505]]} + {:process 1 :type :ok :f :txn :value [[:append 5 570]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 0 573]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 0 572]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 1 571]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 577]]} + {:process 6 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561]]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 578]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 579]]} + {:process 5 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571]]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 580]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562]]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 581]]} + {:process 3 :type :ok :f :txn :value [[:append 0 574]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 582]]} + {:process 4 :type :ok :f :txn :value [[:append 5 575]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 3 576]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564]]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 583]]} + {:process 2 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561]]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 584]]} + {:process 1 :type :ok :f :txn :value [[:append 7 579]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 585]]} + {:process 7 :type :ok :f :txn :value [[:append 2 577]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 7 578]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 586]]} + {:process 5 :type :ok :f :txn :value [[:append 6 580]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 587]]} + {:process 7 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576]]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 588]]} + {:process 0 :type :ok :f :txn :value [[:append 6 581]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 589]]} + {:process 3 :type :ok :f :txn :value [[:append 7 582]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 590]]} + {:process 4 :type :ok :f :txn :value [[:append 3 583]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 591]]} + {:process 2 :type :ok :f :txn :value [[:append 5 584]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 592]]} + {:process 1 :type :ok :f :txn :value [[:append 2 585]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 0 586]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 506]]} - {:process 6 :type :fail :f :txn :value [[:append 6 506]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 507]]} - {:process 6 :type :fail :f :txn :value [[:append 3 507]]} + {:process 0 :type :ok :f :txn :value [[:append 5 589]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 7 587]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 593]]} + {:process 6 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589]]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 594]]} + {:process 7 :type :ok :f :txn :value [[:append 4 588]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 595]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 596]]} + {:process 5 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588]]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 597]]} + {:process 3 :type :ok :f :txn :value [[:append 5 590]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 598]]} + {:process 4 :type :ok :f :txn :value [[:append 2 591]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 4 592]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571]]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 599]]} + {:process 2 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587]]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 600]]} + {:process 7 :type :ok :f :txn :value [[:append 5 595]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 6 594]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 601]]} + {:process 0 :type :ok :f :txn :value [[:append 3 596]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 602]]} + {:process 1 :type :ok :f :txn :value [[:append 4 593]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 603]]} + {:process 7 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594]]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 604]]} + {:process 5 :type :ok :f :txn :value [[:append 5 597]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 605]]} + {:process 3 :type :ok :f :txn :value [[:append 4 598]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 606]]} + {:process 2 :type :ok :f :txn :value [[:append 6 600]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 607]]} + {:process 4 :type :ok :f :txn :value [[:append 0 599]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 608]]} + {:process 6 :type :ok :f :txn :value [[:append 3 601]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 508]]} - {:process 6 :type :fail :f :txn :value [[:append 1 508]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 509]]} - {:process 6 :type :fail :f :txn :value [[:append 2 509]]} + {:process 5 :type :ok :f :txn :value [[:append 2 605]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598]]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 609]]} + {:process 1 :type :ok :f :txn :value [[:append 3 603]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 7 604]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 610]]} + {:process 0 :type :ok :f :txn :value [[:append 2 602]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603]]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 611]]} + {:process 3 :type :ok :f :txn :value [[:append 2 606]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 612]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 613]]} + {:process 0 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571]]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 614]]} + {:process 2 :type :ok :f :txn :value [[:append 1 607]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 7 608]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599]]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 615]]} + {:process 4 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600]]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 616]]} + {:process 7 :type :ok :f :txn :value [[:append 0 610]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 1 609]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 617]]} + {:process 5 :type :ok :f :txn :value [[:append 0 611]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 618]]} + {:process 7 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609]]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 619]]} + {:process 3 :type :ok :f :txn :value [[:append 1 612]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 0 614]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 620]]} + {:process 1 :type :ok :f :txn :value [[:append 5 613]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 621]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614]]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 622]]} + {:process 2 :type :ok :f :txn :value [[:append 3 615]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 623]]} + {:process 4 :type :ok :f :txn :value [[:append 5 616]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 624]]} + {:process 7 :type :ok :f :txn :value [[:append 2 619]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 625]]} + {:process 0 :type :ok :f :txn :value [[:append 7 620]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 1 618]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 2 617]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 510]]} - {:process 6 :type :fail :f :txn :value [[:append 0 510]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 511]]} - {:process 6 :type :fail :f :txn :value [[:append 5 511]]} + {:process 2 :type :ok :f :txn :value [[:append 2 623]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 7 622]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 626]]} + {:process 0 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600]]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 627]]} + {:process 5 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600]]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 628]]} + {:process 1 :type :ok :f :txn :value [[:append 0 621]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622]]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 629]]} + {:process 4 :type :ok :f :txn :value [[:append 4 624]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616]]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 630]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 631]]} + {:process 4 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615]]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 632]]} + {:process 7 :type :ok :f :txn :value [[:append 3 625]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 6 626]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 7 628]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 633]]} + {:process 0 :type :ok :f :txn :value [[:append 5 627]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 634]]} + {:process 7 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624]]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 635]]} + {:process 6 :type :ok :f :txn :value [[:append 0 629]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 636]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 637]]} + {:process 2 :type :ok :f :txn :value [[:append 4 630]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 638]]} + {:process 1 :type :ok :f :txn :value [[:append 2 631]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 639]]} + {:process 4 :type :ok :f :txn :value [[:append 2 632]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 640]]} + {:process 5 :type :ok :f :txn :value [[:append 4 633]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 5 635]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 641]]} + {:process 6 :type :ok :f :txn :value [[:append 5 636]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 512]]} - {:process 6 :type :fail :f :txn :value [[:append 3 512]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 513]]} - {:process 6 :type :fail :f :txn :value [[:append 4 513]]} + {:process 2 :type :ok :f :txn :value [[:append 7 638]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 4 634]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 4 637]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 642]]} + {:process 5 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636]]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 643]]} + {:process 6 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626]]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 644]]} + {:process 2 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626]]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 645]]} + {:process 0 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625]]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 646]]} + {:process 1 :type :ok :f :txn :value [[:append 1 639]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 1 640]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 647]]} + {:process 7 :type :ok :f :txn :value [[:append 6 641]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629]]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 648]]} + {:process 3 :type :ok :f :txn :value [[:append 3 642]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638]]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 649]]} + {:process 3 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632]]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 650]]} + {:process 0 :type :ok :f :txn :value [[:append 2 646]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 651]]} + {:process 6 :type :ok :f :txn :value [[:append 3 644]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 652]]} + {:process 2 :type :ok :f :txn :value [[:append 1 645]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 653]]} + {:process 5 :type :ok :f :txn :value [[:append 2 643]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 654]]} + {:process 1 :type :ok :f :txn :value [[:append 3 647]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 655]]} + {:process 4 :type :ok :f :txn :value [[:append 7 648]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 656]]} + {:process 0 :type :ok :f :txn :value [[:append 1 651]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 3 654]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 4 652]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 514]]} - {:process 6 :type :fail :f :txn :value [[:append 2 514]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 515]]} - {:process 6 :type :fail :f :txn :value [[:append 7 515]]} + {:process 2 :type :ok :f :txn :value [[:append 0 653]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 1 650]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 657]]} + {:process 7 :type :ok :f :txn :value [[:append 0 649]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 658]]} + {:process 0 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649]]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 659]]} + {:process 5 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649]]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 660]]} + {:process 1 :type :ok :f :txn :value [[:append 6 655]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650]]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 661]]} + {:process 2 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654]]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 662]]} + {:process 4 :type :ok :f :txn :value [[:append 6 656]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 663]]} + {:process 4 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636]]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 664]]} + {:process 3 :type :ok :f :txn :value [[:append 0 657]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 1 658]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 7 659]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 665]]} + {:process 5 :type :ok :f :txn :value [[:append 1 660]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 666]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 667]]} + {:process 2 :type :ok :f :txn :value [[:append 2 662]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 668]]} + {:process 6 :type :ok :f :txn :value [[:append 2 661]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 669]]} + {:process 7 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661]]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 670]]} + {:process 4 :type :ok :f :txn :value [[:append 4 664]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 671]]} + {:process 1 :type :ok :f :txn :value [[:append 0 663]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 672]]} + {:process 6 :type :ok :f :txn :value [[:append 7 669]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 516]]} - {:process 6 :type :fail :f :txn :value [[:append 5 516]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 517]]} - {:process 6 :type :fail :f :txn :value [[:append 6 517]]} + {:process 3 :type :ok :f :txn :value [[:append 6 667]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 673]]} + {:process 2 :type :ok :f :txn :value [[:append 5 668]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 6 666]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 3 670]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 674]]} + {:process 0 :type :ok :f :txn :value [[:append 6 665]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663]]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 675]]} + {:process 2 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664]]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 676]]} + {:process 5 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669]]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 677]]} + {:process 0 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668]]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 678]]} + {:process 4 :type :ok :f :txn :value [[:append 3 671]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 7 672]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 5 673]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661]]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 679]]} + {:process 7 :type :ok :f :txn :value [[:append 4 674]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661]]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 680]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 681]]} + {:process 6 :type :ok :f :txn :value [[:append 5 675]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 682]]} + {:process 2 :type :ok :f :txn :value [[:append 7 676]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 683]]} + {:process 7 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675]]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 684]]} + {:process 5 :type :ok :f :txn :value [[:append 4 677]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 685]]} + {:process 0 :type :ok :f :txn :value [[:append 4 678]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 686]]} + {:process 4 :type :ok :f :txn :value [[:append 1 679]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 687]]} + {:process 1 :type :ok :f :txn :value [[:append 1 680]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 688]]} + {:process 7 :type :ok :f :txn :value [[:append 6 684]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 689]]} + {:process 2 :type :ok :f :txn :value [[:append 6 683]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 3 681]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 690]]} + {:process 5 :type :ok :f :txn :value [[:append 5 685]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 6 682]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 518]]} - {:process 6 :type :fail :f :txn :value [[:append 4 518]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 519]]} - {:process 6 :type :fail :f :txn :value [[:append 1 519]]} + {:process 0 :type :ok :f :txn :value [[:append 3 686]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680]]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 691]]} + {:process 5 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661]]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 692]]} + {:process 4 :type :ok :f :txn :value [[:append 0 687]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686]]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 693]]} + {:process 0 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661]]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 694]]} + {:process 4 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676]]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 695]]} + {:process 1 :type :ok :f :txn :value [[:append 4 688]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 2 690]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 7 689]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 696]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 697]]} + {:process 7 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687]]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 698]]} + {:process 5 :type :ok :f :txn :value [[:append 3 692]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 699]]} + {:process 2 :type :ok :f :txn :value [[:append 0 691]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 700]]} + {:process 6 :type :ok :f :txn :value [[:append 4 693]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 701]]} + {:process 0 :type :ok :f :txn :value [[:append 1 694]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 702]]} + {:process 4 :type :ok :f :txn :value [[:append 6 695]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 703]]} + {:process 5 :type :ok :f :txn :value [[:append 0 699]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 3 700]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 1 698]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 704]]} + {:process 3 :type :ok :f :txn :value [[:append 0 697]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 705]]} + {:process 1 :type :ok :f :txn :value [[:append 6 696]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 706]]} + {:process 5 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698]]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 707]]} + {:process 6 :type :ok :f :txn :value [[:append 1 701]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 520]]} - {:process 6 :type :fail :f :txn :value [[:append 7 520]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 521]]} - {:process 6 :type :fail :f :txn :value [[:append 0 521]]} + {:process 2 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690]]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 708]]} + {:process 4 :type :ok :f :txn :value [[:append 5 703]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 0 702]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690]]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 709]]} + {:process 4 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693]]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 710]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689]]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 711]]} + {:process 3 :type :ok :f :txn :value [[:append 7 705]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 5 706]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 2 704]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 6 707]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 712]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 713]]} + {:process 2 :type :ok :f :txn :value [[:append 5 708]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 714]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 715]]} + {:process 7 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700]]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 716]]} + {:process 4 :type :ok :f :txn :value [[:append 3 710]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 717]]} + {:process 6 :type :ok :f :txn :value [[:append 7 709]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 718]]} + {:process 0 :type :ok :f :txn :value [[:append 6 711]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 719]]} + {:process 1 :type :ok :f :txn :value [[:append 7 715]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 720]]} + {:process 5 :type :ok :f :txn :value [[:append 7 712]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 5 713]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 721]]} + {:process 7 :type :ok :f :txn :value [[:append 4 716]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 722]]} + {:process 2 :type :ok :f :txn :value [[:append 4 714]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714]]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 723]]} + {:process 2 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712]]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 724]]} + {:process 4 :type :ok :f :txn :value [[:append 2 717]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 0 718]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 522]]} - {:process 6 :type :fail :f :txn :value [[:append 6 522]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 523]]} - {:process 6 :type :fail :f :txn :value [[:append 3 523]]} + {:process 0 :type :ok :f :txn :value [[:append 5 719]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701]]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 725]]} + {:process 1 :type :ok :f :txn :value [[:append 2 720]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719]]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 726]]} + {:process 3 :type :ok :f :txn :value [[:append 4 721]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 727]]} + {:process 7 :type :ok :f :txn :value [[:append 5 722]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 728]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 729]]} + {:process 5 :type :ok :f :txn :value [[:append 5 723]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 730]]} + {:process 7 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711]]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 731]]} + {:process 2 :type :ok :f :txn :value [[:append 6 724]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 732]]} + {:process 4 :type :ok :f :txn :value [[:append 0 725]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 733]]} + {:process 0 :type :ok :f :txn :value [[:append 3 727]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 734]]} + {:process 6 :type :ok :f :txn :value [[:append 6 726]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 735]]} + {:process 3 :type :ok :f :txn :value [[:append 2 729]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 736]]} + {:process 5 :type :ok :f :txn :value [[:append 2 730]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 4 728]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 737]]} + {:process 2 :type :ok :f :txn :value [[:append 1 732]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 7 731]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 738]]} + {:process 5 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727]]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 739]]} + {:process 0 :type :ok :f :txn :value [[:append 2 734]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725]]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 740]]} + {:process 4 :type :ok :f :txn :value [[:append 7 733]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732]]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 741]]} + {:process 6 :type :ok :f :txn :value [[:append 3 735]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 524]]} - {:process 6 :type :fail :f :txn :value [[:append 1 524]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 525]]} - {:process 6 :type :fail :f :txn :value [[:append 2 525]]} - {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 526]]} - {:process 6 :type :fail :f :txn :value [[:append 0 526]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 527]]} - {:process 6 :type :fail :f :txn :value [[:append 5 527]]} - {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 528]]} - {:process 6 :type :fail :f :txn :value [[:append 3 528]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 529]]} - {:process 6 :type :fail :f :txn :value [[:append 4 529]]} - {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 530]]} - {:process 6 :type :fail :f :txn :value [[:append 2 530]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 531]]} - {:process 6 :type :fail :f :txn :value [[:append 7 531]]} - {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 532]]} - {:process 6 :type :fail :f :txn :value [[:append 5 532]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 533]]} - {:process 6 :type :fail :f :txn :value [[:append 6 533]]} - {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 534]]} - {:process 6 :type :fail :f :txn :value [[:append 4 534]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 535]]} - {:process 0 :type :fail :f :txn :value [[:append 0 493]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 536]]} - {:process 0 :type :fail :f :txn :value [[:append 7 536]]} + {:process 4 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726]]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 742]]} + {:process 3 :type :ok :f :txn :value [[:append 1 736]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 3 737]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728]]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 743]]} + {:process 7 :type :ok :f :txn :value [[:append 0 738]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738]]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 744]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 745]]} + {:process 5 :type :ok :f :txn :value [[:append 0 739]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 746]]} + {:process 7 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736]]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 747]]} + {:process 2 :type :ok :f :txn :value [[:append 3 740]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 748]]} + {:process 0 :type :ok :f :txn :value [[:append 0 741]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 749]]} + {:process 4 :type :ok :f :txn :value [[:append 5 742]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 750]]} + {:process 6 :type :ok :f :txn :value [[:append 1 743]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 751]]} + {:process 3 :type :ok :f :txn :value [[:append 7 744]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 752]]} + {:process 1 :type :ok :f :txn :value [[:append 5 745]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 753]]} + {:process 5 :type :ok :f :txn :value [[:append 1 746]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 7 749]]} {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 537]]} - {:process 0 :type :fail :f :txn :value [[:append 5 537]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 538]]} - {:process 0 :type :fail :f :txn :value [[:append 4 538]]} + {:process 7 :type :ok :f :txn :value [[:append 2 747]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 754]]} + {:process 2 :type :ok :f :txn :value [[:append 2 748]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726]]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 755]]} + {:process 0 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726]]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 756]]} + {:process 4 :type :ok :f :txn :value [[:append 4 750]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745]]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 757]]} + {:process 6 :type :ok :f :txn :value [[:append 2 751]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740]]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 758]]} + {:process 3 :type :ok :f :txn :value [[:append 6 752]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 753]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749]]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 759]]} + {:process 7 :type :ok :f :txn :value [[:append 3 754]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 760]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 761]]} + {:process 5 :type :ok :f :txn :value [[:append 7 755]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 762]]} + {:process 0 :type :ok :f :txn :value [[:append 5 756]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 763]]} + {:process 7 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750]]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 764]]} + {:process 2 :type :ok :f :txn :value [[:append 4 757]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 765]]} + {:process 4 :type :ok :f :txn :value [[:append 2 758]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 766]]} + {:process 5 :type :ok :f :txn :value [[:append 4 762]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 0 759]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 767]]} + {:process 1 :type :ok :f :txn :value [[:append 2 761]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 768]]} + {:process 3 :type :ok :f :txn :value [[:append 4 760]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 769]]} + {:process 5 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756]]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 770]]} + {:process 2 :type :ok :f :txn :value [[:append 7 765]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 4 763]]} {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 539]]} - {:process 0 :type :fail :f :txn :value [[:append 2 539]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 540]]} - {:process 0 :type :fail :f :txn :value [[:append 1 540]]} + {:process 7 :type :ok :f :txn :value [[:append 5 764]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 771]]} + {:process 2 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752]]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 772]]} + {:process 0 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754]]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 773]]} + {:process 4 :type :ok :f :txn :value [[:append 1 766]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 5 767]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 3 769]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759]]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 774]]} + {:process 5 :type :ok :f :txn :value [[:append 2 770]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 775]]} + {:process 1 :type :ok :f :txn :value [[:append 1 768]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752]]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 776]]} + {:process 3 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770]]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 777]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 778]]} + {:process 7 :type :ok :f :txn :value [[:append 6 771]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 1 772]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 779]]} + {:process 0 :type :ok :f :txn :value [[:append 2 773]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 780]]} + {:process 7 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765]]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 781]]} + {:process 5 :type :ok :f :txn :value [[:append 3 775]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 7 774]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 782]]} + {:process 1 :type :ok :f :txn :value [[:append 3 778]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 783]]} + {:process 5 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759]]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 784]]} + {:process 3 :type :ok :f :txn :value [[:append 1 777]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 785]]} + {:process 0 :type :ok :f :txn :value [[:append 1 780]]} {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 541]]} - {:process 0 :type :fail :f :txn :value [[:append 7 541]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 542]]} - {:process 0 :type :fail :f :txn :value [[:append 6 542]]} + {:process 6 :type :ok :f :txn :value [[:append 3 776]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 786]]} + {:process 2 :type :ok :f :txn :value [[:append 0 779]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 0 781]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 787]]} + {:process 0 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781]]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 788]]} + {:process 2 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776]]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 789]]} + {:process 4 :type :ok :f :txn :value [[:append 6 782]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 0 785]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 1 784]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 790]]} + {:process 1 :type :ok :f :txn :value [[:append 6 783]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767]]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 791]]} + {:process 7 :type :ok :f :txn :value [[:append 1 787]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 4 786]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 792]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 793]]} + {:process 7 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773]]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 794]]} + {:process 6 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787]]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 795]]} + {:process 0 :type :ok :f :txn :value [[:append 7 788]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 796]]} + {:process 2 :type :ok :f :txn :value [[:append 2 789]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 797]]} + {:process 5 :type :ok :f :txn :value [[:append 6 790]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 793]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 798]]} + {:process 4 :type :ok :f :txn :value [[:append 4 791]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 799]]} + {:process 5 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788]]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 800]]} + {:process 3 :type :ok :f :txn :value [[:append 6 792]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 801]]} + {:process 6 :type :ok :f :txn :value [[:append 2 795]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 802]]} + {:process 7 :type :ok :f :txn :value [[:append 3 794]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 803]]} + {:process 0 :type :ok :f :txn :value [[:append 6 796]]} {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 543]]} - {:process 0 :type :fail :f :txn :value [[:append 4 543]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 544]]} - {:process 0 :type :fail :f :txn :value [[:append 3 544]]} + {:process 2 :type :ok :f :txn :value [[:append 5 797]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797]]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 804]]} + {:process 2 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791]]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 805]]} + {:process 4 :type :ok :f :txn :value [[:append 3 799]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 7 798]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795]]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 806]]} + {:process 6 :type :ok :f :txn :value [[:append 7 802]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795]]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 807]]} + {:process 3 :type :ok :f :txn :value [[:append 5 801]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 4 803]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 4 800]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 808]]} + {:process 6 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793]]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 809]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 810]]} + {:process 2 :type :ok :f :txn :value [[:append 7 805]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 811]]} + {:process 7 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801]]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 812]]} + {:process 0 :type :ok :f :txn :value [[:append 4 804]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 813]]} + {:process 4 :type :ok :f :txn :value [[:append 1 806]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 814]]} + {:process 1 :type :ok :f :txn :value [[:append 1 807]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 815]]} + {:process 7 :type :ok :f :txn :value [[:append 6 812]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 816]]} + {:process 5 :type :ok :f :txn :value [[:append 5 808]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 3 810]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 817]]} + {:process 6 :type :ok :f :txn :value [[:append 5 809]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 818]]} + {:process 2 :type :ok :f :txn :value [[:append 6 811]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 3 813]]} {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 545]]} - {:process 0 :type :fail :f :txn :value [[:append 1 545]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 546]]} - {:process 0 :type :fail :f :txn :value [[:append 0 546]]} + {:process 5 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795]]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 819]]} + {:process 4 :type :ok :f :txn :value [[:append 0 814]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807]]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 820]]} + {:process 0 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795]]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 821]]} + {:process 1 :type :ok :f :txn :value [[:append 4 815]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805]]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 822]]} + {:process 7 :type :ok :f :txn :value [[:append 7 816]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 2 817]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 823]]} + {:process 6 :type :ok :f :txn :value [[:append 6 818]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814]]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 824]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 825]]} + {:process 5 :type :ok :f :txn :value [[:append 3 819]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 826]]} + {:process 6 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819]]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 827]]} + {:process 0 :type :ok :f :txn :value [[:append 1 821]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 828]]} + {:process 2 :type :ok :f :txn :value [[:append 0 820]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 829]]} + {:process 4 :type :ok :f :txn :value [[:append 6 822]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 830]]} + {:process 1 :type :ok :f :txn :value [[:append 6 823]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 831]]} + {:process 7 :type :ok :f :txn :value [[:append 1 824]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 832]]} + {:process 6 :type :ok :f :txn :value [[:append 4 827]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 833]]} + {:process 5 :type :ok :f :txn :value [[:append 0 826]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 0 825]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 834]]} + {:process 0 :type :ok :f :txn :value [[:append 0 828]]} {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 547]]} - {:process 0 :type :fail :f :txn :value [[:append 6 547]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 548]]} - {:process 0 :type :fail :f :txn :value [[:append 5 548]]} + {:process 2 :type :ok :f :txn :value [[:append 3 829]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 5 830]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824]]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 835]]} + {:process 1 :type :ok :f :txn :value [[:append 5 831]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816]]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 836]]} + {:process 2 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817]]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 837]]} + {:process 4 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827]]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 838]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 839]]} + {:process 7 :type :ok :f :txn :value [[:append 2 832]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 1 833]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 7 834]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829]]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 840]]} + {:process 6 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832]]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 841]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 842]]} + {:process 5 :type :ok :f :txn :value [[:append 6 835]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 843]]} + {:process 2 :type :ok :f :txn :value [[:append 5 837]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 844]]} + {:process 0 :type :ok :f :txn :value [[:append 6 836]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 845]]} + {:process 4 :type :ok :f :txn :value [[:append 3 838]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 846]]} + {:process 1 :type :ok :f :txn :value [[:append 7 839]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 847]]} + {:process 6 :type :ok :f :txn :value [[:append 7 841]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 848]]} + {:process 7 :type :ok :f :txn :value [[:append 4 840]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 849]]} + {:process 3 :type :ok :f :txn :value [[:append 5 842]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 850]]} + {:process 0 :type :ok :f :txn :value [[:append 5 845]]} {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 549]]} - {:process 0 :type :fail :f :txn :value [[:append 3 549]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 550]]} - {:process 0 :type :fail :f :txn :value [[:append 2 550]]} + {:process 2 :type :ok :f :txn :value [[:append 4 844]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 2 846]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 2 847]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 7 843]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 851]]} + {:process 2 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843]]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 852]]} + {:process 4 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833]]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 853]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 854]]} + {:process 5 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844]]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 855]]} + {:process 6 :type :ok :f :txn :value [[:append 0 848]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 5 849]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 4 850]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849]]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 856]]} + {:process 7 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836]]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 857]]} + {:process 4 :type :ok :f :txn :value [[:append 0 853]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 858]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 859]]} + {:process 0 :type :ok :f :txn :value [[:append 3 851]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 860]]} + {:process 2 :type :ok :f :txn :value [[:append 6 852]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 861]]} + {:process 1 :type :ok :f :txn :value [[:append 4 854]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 862]]} + {:process 5 :type :ok :f :txn :value [[:append 5 855]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 863]]} + {:process 4 :type :ok :f :txn :value [[:append 7 858]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 6 856]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 864]]} + {:process 7 :type :ok :f :txn :value [[:append 7 857]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 865]]} + {:process 3 :type :ok :f :txn :value [[:append 2 859]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 866]]} + {:process 2 :type :ok :f :txn :value [[:append 1 861]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 3 862]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856]]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 867]]} + {:process 0 :type :ok :f :txn :value [[:append 2 860]]} {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 551]]} - {:process 0 :type :fail :f :txn :value [[:append 0 551]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 552]]} - {:process 0 :type :fail :f :txn :value [[:append 7 552]]} + {:process 5 :type :ok :f :txn :value [[:append 2 863]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853]]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 868]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 869]]} + {:process 0 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861]]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 870]]} + {:process 5 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862]]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 871]]} + {:process 6 :type :ok :f :txn :value [[:append 3 864]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 0 865]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 5 867]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 872]]} + {:process 3 :type :ok :f :txn :value [[:append 1 866]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854]]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 873]]} + {:process 7 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866]]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 874]]} + {:process 0 :type :ok :f :txn :value [[:append 0 870]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 875]]} + {:process 1 :type :ok :f :txn :value [[:append 5 869]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 876]]} + {:process 2 :type :ok :f :txn :value [[:append 3 868]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 877]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870]]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 878]]} + {:process 4 :type :ok :f :txn :value [[:append 4 872]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 0 871]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 879]]} + {:process 0 :type :ok :f :txn :value [[:append 7 875]]} {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 553]]} - {:process 0 :type :fail :f :txn :value [[:append 5 553]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 554]]} - {:process 0 :type :fail :f :txn :value [[:append 4 554]]} + {:process 2 :type :ok :f :txn :value [[:append 2 877]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868]]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 880]]} + {:process 1 :type :ok :f :txn :value [[:append 0 876]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 2 874]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 881]]} + {:process 3 :type :ok :f :txn :value [[:append 7 878]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 882]]} + {:process 6 :type :ok :f :txn :value [[:append 1 873]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 883]]} + {:process 0 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856]]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 884]]} + {:process 2 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869]]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 885]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 886]]} + {:process 5 :type :ok :f :txn :value [[:append 1 879]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 5 884]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 887]]} + {:process 4 :type :ok :f :txn :value [[:append 2 880]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 888]]} + {:process 5 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856]]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 889]]} + {:process 2 :type :ok :f :txn :value [[:append 4 885]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 890]]} + {:process 6 :type :ok :f :txn :value [[:append 2 883]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 3 881]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 6 882]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878]]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 891]]} + {:process 7 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885]]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 892]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 893]]} + {:process 1 :type :ok :f :txn :value [[:append 2 886]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 894]]} + {:process 0 :type :ok :f :txn :value [[:append 4 887]]} {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 555]]} - {:process 0 :type :fail :f :txn :value [[:append 2 555]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 556]]} - {:process 0 :type :fail :f :txn :value [[:append 1 556]]} + {:process 2 :type :ok :f :txn :value [[:append 7 890]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 7 889]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 895]]} + {:process 4 :type :ok :f :txn :value [[:append 1 888]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881]]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 896]]} + {:process 2 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882]]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 897]]} + {:process 3 :type :ok :f :txn :value [[:append 4 893]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 898]]} + {:process 4 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876]]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 899]]} + {:process 7 :type :ok :f :txn :value [[:append 5 892]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 900]]} + {:process 6 :type :ok :f :txn :value [[:append 0 891]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 901]]} + {:process 1 :type :ok :f :txn :value [[:append 1 894]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 4 895]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 902]]} + {:process 5 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892]]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 903]]} + {:process 3 :type :ok :f :txn :value [[:append 3 898]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 1 897]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 904]]} + {:process 0 :type :ok :f :txn :value [[:append 2 896]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 905]]} + {:process 7 :type :ok :f :txn :value [[:append 6 900]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 5 901]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 7 899]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 906]]} + {:process 3 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896]]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 907]]} + {:process 7 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899]]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 908]]} + {:process 6 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900]]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 909]]} + {:process 1 :type :ok :f :txn :value [[:append 3 902]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 910]]} + {:process 5 :type :ok :f :txn :value [[:append 2 903]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 911]]} + {:process 0 :type :ok :f :txn :value [[:append 1 905]]} {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 557]]} - {:process 0 :type :fail :f :txn :value [[:append 7 557]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 558]]} - {:process 0 :type :fail :f :txn :value [[:append 6 558]]} + {:process 2 :type :ok :f :txn :value [[:append 0 904]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 6 906]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904]]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 912]]} + {:process 3 :type :ok :f :txn :value [[:append 1 907]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 913]]} + {:process 7 :type :ok :f :txn :value [[:append 0 908]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 914]]} + {:process 2 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902]]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 915]]} + {:process 1 :type :ok :f :txn :value [[:append 6 910]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901]]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 916]]} + {:process 6 :type :ok :f :txn :value [[:append 3 909]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 917]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 918]]} + {:process 5 :type :ok :f :txn :value [[:append 3 911]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908]]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 919]]} + {:process 3 :type :ok :f :txn :value [[:append 0 913]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 2 915]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 920]]} + {:process 0 :type :ok :f :txn :value [[:append 7 912]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 921]]} + {:process 7 :type :ok :f :txn :value [[:append 1 914]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 918]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 922]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 923]]} + {:process 7 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915]]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 924]]} + {:process 4 :type :ok :f :txn :value [[:append 4 916]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 925]]} + {:process 6 :type :ok :f :txn :value [[:append 4 917]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 1 919]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 926]]} + {:process 6 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919]]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 927]]} + {:process 0 :type :ok :f :txn :value [[:append 6 921]]} {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 559]]} - {:process 0 :type :fail :f :txn :value [[:append 4 559]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 560]]} - {:process 0 :type :fail :f :txn :value [[:append 3 560]]} + {:process 2 :type :ok :f :txn :value [[:append 5 920]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920]]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 928]]} + {:process 4 :type :ok :f :txn :value [[:append 3 925]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917]]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 929]]} + {:process 7 :type :ok :f :txn :value [[:append 3 924]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 930]]} + {:process 3 :type :ok :f :txn :value [[:append 6 923]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 931]]} + {:process 1 :type :ok :f :txn :value [[:append 7 922]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915]]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 932]]} + {:process 6 :type :ok :f :txn :value [[:append 2 927]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 933]]} + {:process 1 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927]]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 934]]} + {:process 5 :type :ok :f :txn :value [[:append 6 926]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 4 928]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 935]]} + {:process 5 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922]]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 936]]} + {:process 7 :type :ok :f :txn :value [[:append 4 930]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 7 929]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 937]]} + {:process 3 :type :ok :f :txn :value [[:append 5 931]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 1 932]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 938]]} + {:process 7 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931]]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 939]]} + {:process 1 :type :ok :f :txn :value [[:append 1 934]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 940]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 941]]} + {:process 6 :type :ok :f :txn :value [[:append 7 933]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918]]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 942]]} + {:process 0 :type :ok :f :txn :value [[:append 3 935]]} {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 561]]} - {:process 0 :type :fail :f :txn :value [[:append 1 561]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 562]]} - {:process 0 :type :fail :f :txn :value [[:append 0 562]]} + {:process 5 :type :ok :f :txn :value [[:append 4 936]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 943]]} + {:process 2 :type :ok :f :txn :value [[:append 6 937]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 0 938]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 3 941]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 944]]} + {:process 0 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927]]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 945]]} + {:process 7 :type :ok :f :txn :value [[:append 6 939]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 946]]} + {:process 1 :type :ok :f :txn :value [[:append 4 940]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934]]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 947]]} + {:process 4 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933]]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 948]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 949]]} + {:process 6 :type :ok :f :txn :value [[:append 5 942]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 950]]} + {:process 5 :type :ok :f :txn :value [[:append 5 943]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927]]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 951]]} + {:process 3 :type :ok :f :txn :value [[:append 2 944]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 1 945]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 952]]} + {:process 7 :type :ok :f :txn :value [[:append 7 946]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 0 947]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 953]]} + {:process 6 :type :ok :f :txn :value [[:append 6 950]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 954]]} + {:process 4 :type :ok :f :txn :value [[:append 6 948]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 955]]} + {:process 7 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947]]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 956]]} + {:process 1 :type :ok :f :txn :value [[:append 6 949]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 957]]} + {:process 6 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941]]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 958]]} + {:process 5 :type :ok :f :txn :value [[:append 3 951]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 959]]} + {:process 0 :type :ok :f :txn :value [[:append 0 952]]} {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 563]]} - {:process 0 :type :fail :f :txn :value [[:append 6 563]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 564]]} - {:process 0 :type :fail :f :txn :value [[:append 5 564]]} + {:process 2 :type :ok :f :txn :value [[:append 3 953]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946]]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 960]]} + {:process 6 :type :ok :f :txn :value [[:append 4 958]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 961]]} + {:process 7 :type :ok :f :txn :value [[:append 1 956]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 962]]} + {:process 4 :type :ok :f :txn :value [[:append 5 955]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 0 954]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 963]]} + {:process 2 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944]]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 964]]} + {:process 1 :type :ok :f :txn :value [[:append 5 957]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958]]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 965]]} + {:process 5 :type :ok :f :txn :value [[:append 0 959]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 966]]} + {:process 5 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956]]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 967]]} + {:process 0 :type :ok :f :txn :value [[:append 6 960]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 968]]} + {:process 6 :type :ok :f :txn :value [[:append 1 961]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 7 963]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 2 962]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 5 964]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 969]]} + {:process 4 :type :ok :f :txn :value [[:append 3 965]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 970]]} + {:process 6 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962]]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 971]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 972]]} + {:process 7 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965]]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 973]]} + {:process 5 :type :ok :f :txn :value [[:append 6 967]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 974]]} + {:process 0 :type :ok :f :txn :value [[:append 5 968]]} {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 565]]} - {:process 0 :type :fail :f :txn :value [[:append 3 565]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 566]]} - {:process 0 :type :fail :f :txn :value [[:append 2 566]]} + {:process 1 :type :ok :f :txn :value [[:append 7 966]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 975]]} + {:process 3 :type :ok :f :txn :value [[:append 5 972]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 976]]} + {:process 4 :type :ok :f :txn :value [[:append 2 970]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 977]]} + {:process 7 :type :ok :f :txn :value [[:append 4 973]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 978]]} + {:process 6 :type :ok :f :txn :value [[:append 7 971]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 979]]} + {:process 2 :type :ok :f :txn :value [[:append 4 969]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961]]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 980]]} + {:process 2 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971]]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 981]]} + {:process 5 :type :ok :f :txn :value [[:append 7 974]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 2 975]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969]]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 982]]} + {:process 3 :type :ok :f :txn :value [[:append 4 976]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 0 979]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 983]]} + {:process 0 :type :ok :f :txn :value [[:append 3 977]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 984]]} + {:process 7 :type :ok :f :txn :value [[:append 5 978]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 985]]} + {:process 4 :type :ok :f :txn :value [[:append 0 980]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 986]]} + {:process 6 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978]]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 987]]} + {:process 2 :type :ok :f :txn :value [[:append 6 981]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 988]]} + {:process 7 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981]]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 989]]} + {:process 1 :type :ok :f :txn :value [[:append 4 983]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 990]]} + {:process 5 :type :ok :f :txn :value [[:append 5 982]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 991]]} + {:process 0 :type :ok :f :txn :value [[:append 2 984]]} {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 567]]} - {:process 0 :type :fail :f :txn :value [[:append 0 567]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 568]]} - {:process 0 :type :fail :f :txn :value [[:append 7 568]]} + {:process 6 :type :ok :f :txn :value [[:append 6 987]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 992]]} + {:process 4 :type :ok :f :txn :value [[:append 7 986]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 2 985]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 993]]} + {:process 0 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961]]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 994]]} + {:process 2 :type :ok :f :txn :value [[:append 1 988]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987]]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 995]]} + {:process 7 :type :ok :f :txn :value [[:append 7 989]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 996]]} + {:process 2 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980]]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 997]]} + {:process 1 :type :ok :f :txn :value [[:append 3 990]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 2 991]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 3 992]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 998]]} + {:process 3 :type :ok :f :txn :value [[:append 1 993]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992]]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 999]]} + {:process 0 :type :ok :f :txn :value [[:append 0 994]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1000]]} + {:process 6 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983]]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1001]]} + {:process 7 :type :ok :f :txn :value [[:append 0 996]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996]]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 1002]]} + {:process 4 :type :ok :f :txn :value [[:append 5 995]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1003]]} + {:process 2 :type :ok :f :txn :value [[:append 3 997]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 1004]]} + {:process 7 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993]]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 1005]]} + {:process 5 :type :ok :f :txn :value [[:append 0 999]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 1006]]} + {:process 6 :type :ok :f :txn :value [[:append 1 1001]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1007]]} + {:process 1 :type :ok :f :txn :value [[:append 5 998]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 1008]]} + {:process 0 :type :ok :f :txn :value [[:append 7 1000]]} {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 569]]} - {:process 0 :type :fail :f :txn :value [[:append 5 569]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 570]]} - {:process 0 :type :fail :f :txn :value [[:append 4 570]]} + {:process 4 :type :ok :f :txn :value [[:append 4 1003]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 2 1004]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 7 1002]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 1009]]} + {:process 0 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987]]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1010]]} + {:process 7 :type :ok :f :txn :value [[:append 2 1005]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 1011]]} + {:process 4 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997]]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1012]]} + {:process 2 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998]]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 1013]]} + {:process 5 :type :ok :f :txn :value [[:append 1 1006]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 1008]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 2 1007]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 2 1012]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1014]]} + {:process 5 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987]]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 1015]]} + {:process 3 :type :ok :f :txn :value [[:append 6 1009]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 1016]]} + {:process 0 :type :ok :f :txn :value [[:append 5 1010]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1017]]} + {:process 6 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002]]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1018]]} + {:process 2 :type :ok :f :txn :value [[:append 4 1013]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 1019]]} + {:process 7 :type :ok :f :txn :value [[:append 3 1011]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 1020]]} + {:process 7 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013]]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 1021]]} + {:process 6 :type :ok :f :txn :value [[:append 0 1018]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1022]]} + {:process 0 :type :ok :f :txn :value [[:append 4 1017]]} {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 571]]} - {:process 0 :type :fail :f :txn :value [[:append 2 571]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 572]]} - {:process 0 :type :fail :f :txn :value [[:append 1 572]]} + {:process 4 :type :ok :f :txn :value [[:append 1 1014]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 2 1016]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 1023]]} + {:process 5 :type :ok :f :txn :value [[:append 7 1015]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 1024]]} + {:process 2 :type :ok :f :txn :value [[:append 7 1019]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 4 1020]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 1025]]} + {:process 0 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011]]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1026]]} + {:process 4 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018]]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1027]]} + {:process 2 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009]]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 1028]]} + {:process 7 :type :ok :f :txn :value [[:append 5 1021]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 1029]]} + {:process 6 :type :ok :f :txn :value [[:append 5 1022]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 2 1026]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1030]]} + {:process 1 :type :ok :f :txn :value [[:append 1 1023]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 4 1024]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009]]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1031]]} + {:process 3 :type :ok :f :txn :value [[:append 3 1025]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 1032]]} + {:process 5 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022]]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 1033]]} + {:process 2 :type :ok :f :txn :value [[:append 1 1028]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 1034]]} + {:process 4 :type :ok :f :txn :value [[:append 7 1027]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1035]]} + {:process 7 :type :ok :f :txn :value [[:append 6 1029]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026]]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 1036]]} + {:process 7 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027]]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 1037]]} + {:process 0 :type :ok :f :txn :value [[:append 1 1030]]} {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 573]]} - {:process 0 :type :fail :f :txn :value [[:append 7 573]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 574]]} - {:process 0 :type :fail :f :txn :value [[:append 6 574]]} + {:process 6 :type :ok :f :txn :value [[:append 3 1031]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1038]]} + {:process 0 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018]]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1039]]} + {:process 5 :type :ok :f :txn :value [[:append 2 1033]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 1040]]} + {:process 1 :type :ok :f :txn :value [[:append 3 1032]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 1041]]} + {:process 4 :type :ok :f :txn :value [[:append 6 1035]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 0 1034]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 0 1037]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 1042]]} + {:process 3 :type :ok :f :txn :value [[:append 1 1036]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 1043]]} + {:process 4 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022]]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1044]]} + {:process 2 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032]]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 1045]]} + {:process 1 :type :ok :f :txn :value [[:append 6 1041]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 3 1040]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 7 1039]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1046]]} + {:process 6 :type :ok :f :txn :value [[:append 4 1038]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 4 1044]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1047]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 1048]]} + {:process 7 :type :ok :f :txn :value [[:append 1 1042]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037]]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 1049]]} + {:process 3 :type :ok :f :txn :value [[:append 0 1043]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042]]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1050]]} + {:process 2 :type :ok :f :txn :value [[:append 2 1045]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 1051]]} + {:process 7 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045]]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 1052]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 1053]]} + {:process 4 :type :ok :f :txn :value [[:append 3 1047]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 0 1048]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 1054]]} + {:process 0 :type :ok :f :txn :value [[:append 6 1046]]} {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 575]]} - {:process 0 :type :fail :f :txn :value [[:append 4 575]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 576]]} - {:process 0 :type :fail :f :txn :value [[:append 3 576]]} + {:process 5 :type :ok :f :txn :value [[:append 1 1049]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 1055]]} + {:process 4 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045]]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1056]]} + {:process 2 :type :ok :f :txn :value [[:append 5 1051]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 2 1050]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1057]]} + {:process 0 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051]]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1058]]} + {:process 7 :type :ok :f :txn :value [[:append 3 1052]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 1059]]} + {:process 2 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044]]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 1060]]} + {:process 3 :type :ok :f :txn :value [[:append 6 1053]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 1061]]} + {:process 1 :type :ok :f :txn :value [[:append 7 1054]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 1 1056]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1062]]} + {:process 5 :type :ok :f :txn :value [[:append 6 1055]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 7 1057]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 4 1058]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1063]]} + {:process 1 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050]]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 1064]]} + {:process 7 :type :ok :f :txn :value [[:append 4 1059]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057]]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 1065]]} + {:process 6 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048]]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1066]]} + {:process 7 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051]]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 1067]]} + {:process 3 :type :ok :f :txn :value [[:append 5 1061]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 7 1060]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 1068]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 1069]]} + {:process 1 :type :ok :f :txn :value [[:append 1 1064]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 1070]]} + {:process 0 :type :ok :f :txn :value [[:append 3 1063]]} {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 577]]} - {:process 0 :type :fail :f :txn :value [[:append 1 577]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 578]]} - {:process 0 :type :fail :f :txn :value [[:append 0 578]]} + {:process 4 :type :ok :f :txn :value [[:append 0 1062]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 6 1067]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 1071]]} + {:process 0 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050]]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1072]]} + {:process 4 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060]]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1073]]} + {:process 5 :type :ok :f :txn :value [[:append 4 1065]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 1074]]} + {:process 6 :type :ok :f :txn :value [[:append 5 1066]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1075]]} + {:process 2 :type :ok :f :txn :value [[:append 6 1068]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 3 1069]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 1076]]} + {:process 2 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064]]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 1077]]} + {:process 1 :type :ok :f :txn :value [[:append 4 1070]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 1 1072]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1078]]} + {:process 7 :type :ok :f :txn :value [[:append 7 1071]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 1079]]} + {:process 5 :type :ok :f :txn :value [[:append 5 1074]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 6 1073]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1080]]} + {:process 6 :type :ok :f :txn :value [[:append 6 1075]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062]]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 1081]]} + {:process 5 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050]]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 1082]]} + {:process 3 :type :ok :f :txn :value [[:append 2 1076]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069]]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1083]]} + {:process 2 :type :ok :f :txn :value [[:append 0 1077]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 1084]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 1085]]} + {:process 0 :type :ok :f :txn :value [[:append 0 1078]]} {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 579]]} - {:process 0 :type :fail :f :txn :value [[:append 6 579]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 580]]} - {:process 0 :type :fail :f :txn :value [[:append 5 580]]} + {:process 1 :type :ok :f :txn :value [[:append 6 1079]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 1086]]} + {:process 4 :type :ok :f :txn :value [[:append 5 1080]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 1 1081]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 1087]]} + {:process 5 :type :ok :f :txn :value [[:append 3 1082]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 1088]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071]]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1089]]} + {:process 2 :type :ok :f :txn :value [[:append 3 1084]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070]]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1090]]} + {:process 6 :type :ok :f :txn :value [[:append 4 1083]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1091]]} + {:process 2 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076]]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 1092]]} + {:process 3 :type :ok :f :txn :value [[:append 0 1085]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 1093]]} + {:process 1 :type :ok :f :txn :value [[:append 5 1086]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 1094]]} + {:process 4 :type :ok :f :txn :value [[:append 3 1090]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1095]]} + {:process 7 :type :ok :f :txn :value [[:append 2 1087]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 6 1089]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1096]]} + {:process 5 :type :ok :f :txn :value [[:append 0 1088]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 1 1091]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090]]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 1097]]} + {:process 5 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091]]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 1098]]} + {:process 2 :type :ok :f :txn :value [[:append 5 1092]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 1099]]} + {:process 6 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087]]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1100]]} + {:process 3 :type :ok :f :txn :value [[:append 7 1093]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 2 1095]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 1101]]} + {:process 0 :type :ok :f :txn :value [[:append 5 1096]]} {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 581]]} - {:process 0 :type :fail :f :txn :value [[:append 3 581]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 582]]} - {:process 0 :type :fail :f :txn :value [[:append 2 582]]} + {:process 1 :type :ok :f :txn :value [[:append 7 1094]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 1102]]} + {:process 4 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091]]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1103]]} + {:process 2 :type :ok :f :txn :value [[:append 4 1099]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1104]]} + {:process 5 :type :ok :f :txn :value [[:append 6 1098]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 1105]]} + {:process 7 :type :ok :f :txn :value [[:append 4 1097]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 1106]]} + {:process 2 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094]]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 1107]]} + {:process 6 :type :ok :f :txn :value [[:append 7 1100]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1108]]} + {:process 3 :type :ok :f :txn :value [[:append 5 1101]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 1109]]} + {:process 4 :type :ok :f :txn :value [[:append 0 1103]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1110]]} + {:process 1 :type :ok :f :txn :value [[:append 2 1102]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 3 1104]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1111]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 1112]]} + {:process 6 :type :ok :f :txn :value [[:append 0 1108]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 6 1107]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 1113]]} + {:process 5 :type :ok :f :txn :value [[:append 7 1105]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 5 1106]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 7 1110]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106]]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1114]]} + {:process 3 :type :ok :f :txn :value [[:append 4 1109]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109]]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 1115]]} + {:process 7 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107]]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 1116]]} + {:process 4 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107]]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1117]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 1118]]} + {:process 0 :type :ok :f :txn :value [[:append 2 1111]]} {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 583]]} - {:process 0 :type :fail :f :txn :value [[:append 0 583]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 584]]} - {:process 0 :type :fail :f :txn :value [[:append 7 584]]} + {:process 1 :type :ok :f :txn :value [[:append 4 1112]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 1119]]} + {:process 2 :type :ok :f :txn :value [[:append 1 1113]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113]]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1120]]} + {:process 5 :type :ok :f :txn :value [[:append 5 1115]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 1121]]} + {:process 6 :type :ok :f :txn :value [[:append 6 1114]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1122]]} + {:process 2 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108]]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 1123]]} + {:process 7 :type :ok :f :txn :value [[:append 7 1116]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 1124]]} + {:process 4 :type :ok :f :txn :value [[:append 5 1117]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1125]]} + {:process 3 :type :ok :f :txn :value [[:append 2 1118]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 1126]]} + {:process 1 :type :ok :f :txn :value [[:append 3 1119]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 0 1120]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1127]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 1128]]} + {:process 6 :type :ok :f :txn :value [[:append 3 1122]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 2 1121]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 3 1123]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 1129]]} + {:process 3 :type :ok :f :txn :value [[:append 1 1126]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112]]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1130]]} + {:process 5 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123]]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 1131]]} + {:process 4 :type :ok :f :txn :value [[:append 4 1125]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 0 1124]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124]]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 1132]]} + {:process 1 :type :ok :f :txn :value [[:append 5 1128]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 1133]]} + {:process 4 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123]]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1134]]} + {:process 7 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126]]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 1135]]} + {:process 0 :type :ok :f :txn :value [[:append 7 1127]]} {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 585]]} - {:process 0 :type :fail :f :txn :value [[:append 5 585]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 586]]} - {:process 0 :type :fail :f :txn :value [[:append 4 586]]} + {:process 2 :type :ok :f :txn :value [[:append 2 1129]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114]]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1136]]} + {:process 5 :type :ok :f :txn :value [[:append 0 1131]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 1137]]} + {:process 6 :type :ok :f :txn :value [[:append 1 1130]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1138]]} + {:process 2 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128]]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 1139]]} + {:process 7 :type :ok :f :txn :value [[:append 2 1135]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 1140]]} + {:process 1 :type :ok :f :txn :value [[:append 0 1133]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 7 1132]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 1141]]} + {:process 4 :type :ok :f :txn :value [[:append 2 1134]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1142]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 1143]]} + {:process 5 :type :ok :f :txn :value [[:append 1 1137]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 5 1136]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1144]]} + {:process 6 :type :ok :f :txn :value [[:append 2 1138]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114]]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 1145]]} + {:process 3 :type :ok :f :txn :value [[:append 6 1141]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 3 1140]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 4 1139]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 1146]]} + {:process 6 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132]]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1147]]} + {:process 4 :type :ok :f :txn :value [[:append 1 1142]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 1148]]} + {:process 7 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139]]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 1149]]} + {:process 4 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133]]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1150]]} + {:process 0 :type :ok :f :txn :value [[:append 4 1144]]} {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 587]]} - {:process 0 :type :fail :f :txn :value [[:append 2 587]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 588]]} - {:process 0 :type :fail :f :txn :value [[:append 1 588]]} + {:process 1 :type :ok :f :txn :value [[:append 2 1143]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 1151]]} + {:process 5 :type :ok :f :txn :value [[:append 7 1145]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 1152]]} + {:process 0 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140]]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1153]]} + {:process 2 :type :ok :f :txn :value [[:append 7 1146]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 0 1147]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1154]]} + {:process 2 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141]]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 1155]]} + {:process 4 :type :ok :f :txn :value [[:append 7 1150]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1156]]} + {:process 7 :type :ok :f :txn :value [[:append 5 1149]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 1157]]} + {:process 1 :type :ok :f :txn :value [[:append 1 1151]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 4 1148]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 1158]]} + {:process 5 :type :ok :f :txn :value [[:append 4 1152]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 2 1153]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1159]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 1160]]} + {:process 6 :type :ok :f :txn :value [[:append 5 1154]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154]]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 1161]]} + {:process 2 :type :ok :f :txn :value [[:append 1 1155]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 1162]]} + {:process 6 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141]]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1163]]} + {:process 4 :type :ok :f :txn :value [[:append 6 1156]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 6 1157]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 3 1158]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154]]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1164]]} + {:process 7 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150]]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 1165]]} + {:process 1 :type :ok :f :txn :value [[:append 3 1160]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 1166]]} + {:process 0 :type :ok :f :txn :value [[:append 1 1159]]} {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 589]]} - {:process 0 :type :fail :f :txn :value [[:append 7 589]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 590]]} - {:process 0 :type :fail :f :txn :value [[:append 6 590]]} + {:process 3 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153]]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 1167]]} + {:process 5 :type :ok :f :txn :value [[:append 2 1161]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 1168]]} + {:process 0 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147]]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1169]]} + {:process 2 :type :ok :f :txn :value [[:append 0 1162]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 3 1163]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1170]]} + {:process 2 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163]]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 1171]]} + {:process 4 :type :ok :f :txn :value [[:append 4 1164]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1172]]} + {:process 1 :type :ok :f :txn :value [[:append 6 1166]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 0 1165]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 1173]]} + {:process 3 :type :ok :f :txn :value [[:append 1 1167]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 1174]]} + {:process 5 :type :ok :f :txn :value [[:append 3 1168]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 1175]]} + {:process 0 :type :ok :f :txn :value [[:append 7 1169]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1176]]} + {:process 5 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165]]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 1177]]} + {:process 4 :type :ok :f :txn :value [[:append 3 1172]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 2 1171]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 1178]]} + {:process 6 :type :ok :f :txn :value [[:append 4 1170]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171]]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1179]]} + {:process 3 :type :ok :f :txn :value [[:append 0 1174]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 1 1173]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173]]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1180]]} + {:process 1 :type :ok :f :txn :value [[:append 0 1175]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 1181]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 1182]]} + {:process 7 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171]]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 1183]]} + {:process 0 :type :ok :f :txn :value [[:append 6 1176]]} {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 591]]} - {:process 0 :type :fail :f :txn :value [[:append 4 591]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 592]]} - {:process 0 :type :fail :f :txn :value [[:append 3 592]]} + {:process 5 :type :ok :f :txn :value [[:append 1 1177]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 1184]]} + {:process 2 :type :ok :f :txn :value [[:append 5 1178]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178]]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1185]]} + {:process 4 :type :ok :f :txn :value [[:append 1 1179]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1186]]} + {:process 2 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170]]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 1187]]} + {:process 6 :type :ok :f :txn :value [[:append 2 1180]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1188]]} + {:process 3 :type :ok :f :txn :value [[:append 6 1182]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 1189]]} + {:process 7 :type :ok :f :txn :value [[:append 3 1183]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 1190]]} + {:process 1 :type :ok :f :txn :value [[:append 7 1181]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 6 1184]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180]]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 1191]]} + {:process 5 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181]]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 1192]]} + {:process 4 :type :ok :f :txn :value [[:append 0 1186]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 4 1185]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1193]]} + {:process 7 :type :ok :f :txn :value [[:append 4 1190]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181]]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1194]]} + {:process 2 :type :ok :f :txn :value [[:append 7 1187]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 1195]]} + {:process 3 :type :ok :f :txn :value [[:append 5 1189]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 7 1188]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189]]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 1196]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 1197]]} + {:process 6 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186]]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1198]]} + {:process 1 :type :ok :f :txn :value [[:append 1 1191]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 1199]]} + {:process 5 :type :ok :f :txn :value [[:append 4 1192]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 1200]]} + {:process 4 :type :ok :f :txn :value [[:append 6 1194]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1201]]} + {:process 0 :type :ok :f :txn :value [[:append 3 1193]]} {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 593]]} - {:process 0 :type :fail :f :txn :value [[:append 1 593]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 594]]} - {:process 0 :type :fail :f :txn :value [[:append 0 594]]} + {:process 2 :type :ok :f :txn :value [[:append 6 1195]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180]]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1202]]} + {:process 2 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191]]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 1203]]} + {:process 3 :type :ok :f :txn :value [[:append 3 1197]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 1204]]} + {:process 6 :type :ok :f :txn :value [[:append 5 1198]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1205]]} + {:process 1 :type :ok :f :txn :value [[:append 4 1199]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 6 1196]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 1206]]} + {:process 5 :type :ok :f :txn :value [[:append 5 1200]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 5 1201]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 1207]]} + {:process 5 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180]]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 1208]]} + {:process 4 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199]]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1209]]} + {:process 0 :type :ok :f :txn :value [[:append 1 1202]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1210]]} + {:process 2 :type :ok :f :txn :value [[:append 0 1203]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 1211]]} + {:process 3 :type :ok :f :txn :value [[:append 2 1204]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 6 1205]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 7 1206]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 6 1207]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 1212]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 1213]]} + {:process 6 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197]]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1214]]} + {:process 5 :type :ok :f :txn :value [[:append 3 1208]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 1215]]} + {:process 7 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203]]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 1216]]} + {:process 4 :type :ok :f :txn :value [[:append 3 1209]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1217]]} + {:process 0 :type :ok :f :txn :value [[:append 0 1210]]} {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 595]]} - {:process 0 :type :fail :f :txn :value [[:append 6 595]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 596]]} - {:process 0 :type :fail :f :txn :value [[:append 5 596]]} + {:process 2 :type :ok :f :txn :value [[:append 3 1211]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206]]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1218]]} + {:process 2 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180 1204]]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 1219]]} + {:process 3 :type :ok :f :txn :value [[:append 0 1213]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 1220]]} + {:process 1 :type :ok :f :txn :value [[:append 5 1212]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 4 1214]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1221]]} + {:process 5 :type :ok :f :txn :value [[:append 0 1215]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 2 1217]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 1222]]} + {:process 7 :type :ok :f :txn :value [[:append 1 1216]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 1223]]} + {:process 5 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216]]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 1224]]} + {:process 4 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216]]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1225]]} + {:process 2 :type :ok :f :txn :value [[:append 5 1219]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 1226]]} + {:process 3 :type :ok :f :txn :value [[:append 7 1220]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 6 1218]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1227]]} + {:process 6 :type :ok :f :txn :value [[:append 1 1221]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 1228]]} + {:process 6 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180 1204 1217]]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1229]]} + {:process 7 :type :ok :f :txn :value [[:append 2 1223]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 7 1222]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 1230]]} + {:process 5 :type :ok :f :txn :value [[:append 6 1224]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 1231]]} + {:process 4 :type :ok :f :txn :value [[:append 0 1225]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1232]]} + {:process 2 :type :ok :f :txn :value [[:append 4 1226]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211]]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 1233]]} + {:process 0 :type :ok :f :txn :value [[:append 5 1227]]} {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 597]]} - {:process 0 :type :fail :f :txn :value [[:append 3 597]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 598]]} - {:process 0 :type :fail :f :txn :value [[:append 2 598]]} + {:process 2 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222]]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 1234]]} + {:process 6 :type :ok :f :txn :value [[:append 7 1229]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1235]]} + {:process 3 :type :ok :f :txn :value [[:append 5 1228]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 1236]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1237]]} + {:process 1 :type :ok :f :txn :value [[:append 2 1230]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 7 1231]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 7 1232]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 4 1233]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 1238]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 1239]]} + {:process 5 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233]]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 1240]]} + {:process 4 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224]]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1241]]} + {:process 6 :type :ok :f :txn :value [[:append 0 1235]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 6 1234]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 1242]]} + {:process 3 :type :ok :f :txn :value [[:append 4 1236]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228]]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1243]]} + {:process 0 :type :ok :f :txn :value [[:append 3 1237]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1244]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 1245]]} + {:process 1 :type :ok :f :txn :value [[:append 4 1239]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 1246]]} + {:process 7 :type :ok :f :txn :value [[:append 5 1238]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 5 1240]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 1247]]} + {:process 4 :type :ok :f :txn :value [[:append 5 1241]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1248]]} + {:process 2 :type :ok :f :txn :value [[:append 1 1242]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234]]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 1249]]} + {:process 0 :type :ok :f :txn :value [[:append 2 1244]]} {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 599]]} - {:process 0 :type :fail :f :txn :value [[:append 0 599]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 600]]} - {:process 0 :type :fail :f :txn :value [[:append 7 600]]} + {:process 6 :type :ok :f :txn :value [[:append 6 1243]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1250]]} + {:process 2 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235]]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 1251]]} + {:process 0 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242]]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1252]]} + {:process 3 :type :ok :f :txn :value [[:append 2 1245]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 1253]]} + {:process 1 :type :ok :f :txn :value [[:append 3 1246]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 2 1247]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 4 1248]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 1254]]} + {:process 5 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246]]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 1255]]} + {:process 4 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246]]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1256]]} + {:process 7 :type :ok :f :txn :value [[:append 7 1249]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 1257]]} + {:process 6 :type :ok :f :txn :value [[:append 3 1250]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 3 1251]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 1258]]} + {:process 0 :type :ok :f :txn :value [[:append 0 1252]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1259]]} + {:process 3 :type :ok :f :txn :value [[:append 1 1253]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248]]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1260]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252]]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 1261]]} + {:process 1 :type :ok :f :txn :value [[:append 5 1254]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 1262]]} + {:process 5 :type :ok :f :txn :value [[:append 0 1255]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 1263]]} + {:process 4 :type :ok :f :txn :value [[:append 2 1256]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1264]]} + {:process 0 :type :ok :f :txn :value [[:append 7 1259]]} {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 601]]} - {:process 0 :type :fail :f :txn :value [[:append 5 601]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 602]]} - {:process 0 :type :fail :f :txn :value [[:append 4 602]]} + {:process 7 :type :ok :f :txn :value [[:append 0 1257]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 2 1258]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243]]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1265]]} + {:process 7 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253]]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 1266]]} + {:process 3 :type :ok :f :txn :value [[:append 7 1261]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 1267]]} + {:process 6 :type :ok :f :txn :value [[:append 1 1260]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1268]]} + {:process 2 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254]]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 1269]]} + {:process 1 :type :ok :f :txn :value [[:append 0 1262]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 1 1263]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 1 1264]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 1270]]} + {:process 5 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243]]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 1271]]} + {:process 4 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262]]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1272]]} + {:process 3 :type :ok :f :txn :value [[:append 6 1267]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 5 1265]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1273]]} + {:process 7 :type :ok :f :txn :value [[:append 2 1266]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 1274]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254 1265]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 1275]]} + {:process 6 :type :ok :f :txn :value [[:append 2 1268]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 4 1269]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 1276]]} + {:process 6 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261]]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1277]]} + {:process 4 :type :ok :f :txn :value [[:append 7 1272]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1278]]} + {:process 5 :type :ok :f :txn :value [[:append 7 1271]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 1279]]} + {:process 1 :type :ok :f :txn :value [[:append 2 1270]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 1280]]} + {:process 3 :type :ok :f :txn :value [[:append 4 1275]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 1281]]} + {:process 0 :type :ok :f :txn :value [[:append 4 1273]]} {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 603]]} - {:process 0 :type :fail :f :txn :value [[:append 2 603]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 604]]} - {:process 0 :type :fail :f :txn :value [[:append 1 604]]} + {:process 2 :type :ok :f :txn :value [[:append 7 1276]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 3 1274]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246 1250 1251 1274]]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1282]]} + {:process 6 :type :ok :f :txn :value [[:append 0 1277]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1283]]} + {:process 4 :type :ok :f :txn :value [[:append 6 1278]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243 1267 1278]]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 1284]]} + {:process 7 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273]]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 1285]]} + {:process 5 :type :ok :f :txn :value [[:append 4 1279]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 1 1280]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254 1265]]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1286]]} + {:process 5 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254 1265]]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 1287]]} + {:process 3 :type :ok :f :txn :value [[:append 3 1281]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 1288]]} + {:process 3 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180 1204 1217 1223 1230 1244 1245 1247 1256 1258 1266 1268 1270]]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 1289]]} + {:process 0 :type :ok :f :txn :value [[:append 2 1282]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1290]]} + {:process 6 :type :ok :f :txn :value [[:append 5 1283]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 5 1285]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 1291]]} + {:process 2 :type :ok :f :txn :value [[:append 1 1284]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 1292]]} + {:process 6 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243 1267 1278]]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1293]]} + {:process 5 :type :ok :f :txn :value [[:append 2 1287]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 1294]]} + {:process 4 :type :ok :f :txn :value [[:append 4 1286]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1295]]} + {:process 0 :type :ok :f :txn :value [[:append 1 1290]]} {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 605]]} - {:process 0 :type :fail :f :txn :value [[:append 7 605]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 606]]} - {:process 0 :type :fail :f :txn :value [[:append 6 606]]} + {:process 1 :type :ok :f :txn :value [[:append 3 1288]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 1296]]} + {:process 3 :type :ok :f :txn :value [[:append 1 1289]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 1297]]} + {:process 0 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277]]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1298]]} + {:process 2 :type :ok :f :txn :value [[:append 0 1292]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 6 1291]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 3 1294]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 3 1293]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1299]]} + {:process 2 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246 1250 1251 1274 1281 1288 1294 1293]]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 1300]]} + {:process 7 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276]]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 1301]]} + {:process 5 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292]]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 1302]]} + {:process 4 :type :ok :f :txn :value [[:append 3 1295]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 6 1296]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180 1204 1217 1223 1230 1244 1245 1247 1256 1258 1266 1268 1270 1282 1287]]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1303]]} + {:process 0 :type :ok :f :txn :value [[:append 7 1298]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1304]]} + {:process 3 :type :ok :f :txn :value [[:append 0 1297]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254 1265 1283 1285]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 1305]]} + {:process 7 :type :ok :f :txn :value [[:append 0 1301]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 1306]]} + {:process 2 :type :ok :f :txn :value [[:append 2 1300]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 1307]]} + {:process 6 :type :ok :f :txn :value [[:append 4 1299]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 1308]]} + {:process 5 :type :ok :f :txn :value [[:append 1 1302]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 1309]]} + {:process 6 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302]]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1310]]} + {:process 0 :type :ok :f :txn :value [[:append 6 1304]]} {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 607]]} - {:process 0 :type :fail :f :txn :value [[:append 4 607]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 608]]} - {:process 0 :type :fail :f :txn :value [[:append 3 608]]} + {:process 4 :type :ok :f :txn :value [[:append 1 1303]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1311]]} + {:process 1 :type :ok :f :txn :value [[:append 0 1305]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 1312]]} + {:process 2 :type :ok :f :txn :value [[:append 5 1307]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254 1265 1283 1285 1307]]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1313]]} + {:process 7 :type :ok :f :txn :value [[:append 1 1306]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 6 1308]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 1314]]} + {:process 5 :type :ok :f :txn :value [[:append 6 1309]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299]]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 1315]]} + {:process 7 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180 1204 1217 1223 1230 1244 1245 1247 1256 1258 1266 1268 1270 1282 1287 1300]]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 1316]]} + {:process 5 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298]]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 1317]]} + {:process 6 :type :ok :f :txn :value [[:append 2 1310]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1318]]} + {:process 4 :type :ok :f :txn :value [[:append 0 1311]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 7 1312]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 5 1314]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 4 1313]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1319]]} + {:process 4 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312]]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1320]]} + {:process 1 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180 1204 1217 1223 1230 1244 1245 1247 1256 1258 1266 1268 1270 1282 1287 1300 1310]]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 1321]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 1322]]} + {:process 2 :type :ok :f :txn :value [[:append 7 1315]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 1323]]} + {:process 7 :type :ok :f :txn :value [[:append 3 1316]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 1324]]} + {:process 5 :type :ok :f :txn :value [[:append 4 1317]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 1325]]} + {:process 6 :type :ok :f :txn :value [[:append 7 1318]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311]]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1326]]} + {:process 1 :type :ok :f :txn :value [[:append 1 1321]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 1327]]} + {:process 4 :type :ok :f :txn :value [[:append 6 1320]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1328]]} + {:process 0 :type :ok :f :txn :value [[:append 3 1319]]} {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 609]]} - {:process 0 :type :fail :f :txn :value [[:append 1 609]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 610]]} - {:process 0 :type :fail :f :txn :value [[:append 0 610]]} + {:process 2 :type :ok :f :txn :value [[:append 6 1323]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 4 1324]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 5 1325]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180 1204 1217 1223 1230 1244 1245 1247 1256 1258 1266 1268 1270 1282 1287 1300 1310]]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1329]]} + {:process 3 :type :ok :f :txn :value [[:append 3 1322]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 1330]]} + {:process 2 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321]]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 1331]]} + {:process 7 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254 1265 1283 1285 1307 1314 1325]]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 1332]]} + {:process 5 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180 1204 1217 1223 1230 1244 1245 1247 1256 1258 1266 1268 1270 1282 1287 1300 1310]]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 1333]]} + {:process 6 :type :ok :f :txn :value [[:append 5 1326]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1334]]} + {:process 1 :type :ok :f :txn :value [[:append 4 1327]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 5 1328]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246 1250 1251 1274 1281 1288 1294 1293 1295 1316 1319 1322]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 1335]]} + {:process 4 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327]]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1336]]} + {:process 7 :type :ok :f :txn :value [[:append 6 1332]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 1337]]} + {:process 3 :type :ok :f :txn :value [[:append 2 1330]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 1 1329]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1338]]} + {:process 2 :type :ok :f :txn :value [[:append 0 1331]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 1339]]} + {:process 5 :type :ok :f :txn :value [[:append 3 1333]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 1340]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 1341]]} + {:process 6 :type :ok :f :txn :value [[:append 6 1334]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246 1250 1251 1274 1281 1288 1294 1293 1295 1316 1319 1322 1333]]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1342]]} + {:process 0 :type :ok :f :txn :value [[:append 0 1338]]} {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 611]]} - {:process 0 :type :fail :f :txn :value [[:append 6 611]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 612]]} - {:process 0 :type :fail :f :txn :value [[:append 5 612]]} + {:process 4 :type :ok :f :txn :value [[:append 3 1336]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1343]]} + {:process 1 :type :ok :f :txn :value [[:append 6 1335]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 1344]]} + {:process 2 :type :ok :f :txn :value [[:append 3 1339]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 7 1337]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337]]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1345]]} + {:process 2 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180 1204 1217 1223 1230 1244 1245 1247 1256 1258 1266 1268 1270 1282 1287 1300 1310 1330]]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 1346]]} + {:process 3 :type :ok :f :txn :value [[:append 0 1341]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 1347]]} + {:process 5 :type :ok :f :txn :value [[:append 0 1340]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340]]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 1348]]} + {:process 5 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329]]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 1349]]} + {:process 4 :type :ok :f :txn :value [[:append 2 1343]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 4 1342]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1350]]} + {:process 1 :type :ok :f :txn :value [[:append 5 1344]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 7 1347]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329]]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1351]]} + {:process 0 :type :ok :f :txn :value [[:append 6 1345]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1352]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 1353]]} + {:process 2 :type :ok :f :txn :value [[:append 5 1346]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 1354]]} + {:process 7 :type :ok :f :txn :value [[:append 1 1348]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 1355]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243 1267 1278 1291 1296 1304 1308 1309 1320 1323 1332 1334 1335 1345]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 1356]]} + {:process 5 :type :ok :f :txn :value [[:append 6 1349]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 1357]]} + {:process 6 :type :ok :f :txn :value [[:append 1 1350]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 7 1353]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 1358]]} + {:process 6 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180 1204 1217 1223 1230 1244 1245 1247 1256 1258 1266 1268 1270 1282 1287 1300 1310 1330 1343]]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1359]]} + {:process 0 :type :ok :f :txn :value [[:append 5 1352]]} {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 613]]} - {:process 0 :type :fail :f :txn :value [[:append 3 613]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 614]]} - {:process 0 :type :fail :f :txn :value [[:append 2 614]]} + {:process 4 :type :ok :f :txn :value [[:append 0 1351]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1360]]} + {:process 3 :type :ok :f :txn :value [[:append 5 1356]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 1361]]} + {:process 7 :type :ok :f :txn :value [[:append 2 1355]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 4 1354]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 7 1357]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1362]]} + {:process 7 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246 1250 1251 1274 1281 1288 1294 1293 1295 1316 1319 1322 1333 1336 1339]]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 1363]]} + {:process 2 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337 1347 1353 1357]]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 1364]]} + {:process 5 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354]]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 1365]]} + {:process 1 :type :ok :f :txn :value [[:append 2 1358]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 4 1361]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 7 1359]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1366]]} + {:process 4 :type :ok :f :txn :value [[:append 7 1360]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 1367]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246 1250 1251 1274 1281 1288 1294 1293 1295 1316 1319 1322 1333 1336 1339]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 1368]]} + {:process 4 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243 1267 1278 1291 1296 1304 1308 1309 1320 1323 1332 1334 1335 1345 1349]]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1369]]} + {:process 7 :type :ok :f :txn :value [[:append 4 1363]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 1370]]} + {:process 0 :type :ok :f :txn :value [[:append 3 1362]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1371]]} + {:process 2 :type :ok :f :txn :value [[:append 6 1364]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 1372]]} + {:process 5 :type :ok :f :txn :value [[:append 5 1365]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 1373]]} + {:process 6 :type :ok :f :txn :value [[:append 0 1366]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254 1265 1283 1285 1307 1314 1325 1326 1328 1344 1346 1352 1356 1365]]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1374]]} + {:process 7 :type :ok :f :txn :value [[:append 5 1370]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 1 1372]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 5 1369]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1375]]} + {:process 0 :type :ok :f :txn :value [[:append 2 1371]]} {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 615]]} - {:process 0 :type :fail :f :txn :value [[:append 0 615]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 616]]} - {:process 0 :type :fail :f :txn :value [[:append 7 616]]} + {:process 3 :type :ok :f :txn :value [[:append 2 1368]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 1376]]} + {:process 1 :type :ok :f :txn :value [[:append 4 1367]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 1377]]} + {:process 7 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243 1267 1278 1291 1296 1304 1308 1309 1320 1323 1332 1334 1335 1345 1349 1364]]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 1378]]} + {:process 2 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340 1351 1366]]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 1379]]} + {:process 5 :type :ok :f :txn :value [[:append 2 1373]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350 1372]]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1380]]} + {:process 5 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246 1250 1251 1274 1281 1288 1294 1293 1295 1316 1319 1322 1333 1336 1339 1362]]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 1381]]} + {:process 4 :type :ok :f :txn :value [[:append 4 1375]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 6 1374]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1382]]} + {:process 4 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246 1250 1251 1274 1281 1288 1294 1293 1295 1316 1319 1322 1333 1336 1339 1362]]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1383]]} + {:process 1 :type :ok :f :txn :value [[:append 3 1377]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 3 1379]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 1384]]} + {:process 0 :type :ok :f :txn :value [[:append 0 1380]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1385]]} + {:process 3 :type :ok :f :txn :value [[:append 1 1376]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 7 1378]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 1386]]} + {:process 5 :type :ok :f :txn :value [[:append 0 1381]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 1387]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243 1267 1278 1291 1296 1304 1308 1309 1320 1323 1332 1334 1335 1345 1349 1364 1374]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 1388]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340 1351 1366 1380 1381]]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 1389]]} + {:process 6 :type :ok :f :txn :value [[:append 3 1382]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354 1361 1363 1367 1375]]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1390]]} + {:process 0 :type :ok :f :txn :value [[:append 7 1385]]} {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 617]]} - {:process 0 :type :fail :f :txn :value [[:append 5 617]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 618]]} - {:process 0 :type :fail :f :txn :value [[:append 4 618]]} + {:process 2 :type :ok :f :txn :value [[:append 2 1384]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 0 1386]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 2 1383]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1391]]} + {:process 3 :type :ok :f :txn :value [[:append 7 1389]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 1392]]} + {:process 0 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243 1267 1278 1291 1296 1304 1308 1309 1320 1323 1332 1334 1335 1345 1349 1364 1374]]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1393]]} + {:process 2 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254 1265 1283 1285 1307 1314 1325 1326 1328 1344 1346 1352 1356 1365 1370 1369]]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 1394]]} + {:process 7 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350 1372 1376]]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 1395]]} + {:process 5 :type :ok :f :txn :value [[:append 1 1387]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 5 1388]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 1396]]} + {:process 5 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243 1267 1278 1291 1296 1304 1308 1309 1320 1323 1332 1334 1335 1345 1349 1364 1374]]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 1397]]} + {:process 6 :type :ok :f :txn :value [[:append 1 1390]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1398]]} + {:process 4 :type :ok :f :txn :value [[:append 1 1391]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340 1351 1366 1380 1381 1386]]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1399]]} + {:process 1 :type :ok :f :txn :value [[:append 0 1396]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 6 1392]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 2 1395]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 1400]]} + {:process 0 :type :ok :f :txn :value [[:append 5 1393]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1401]]} + {:process 2 :type :ok :f :txn :value [[:append 4 1394]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 1402]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337 1347 1353 1357 1359 1360 1378 1385 1389]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 1403]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254 1265 1283 1285 1307 1314 1325 1326 1328 1344 1346 1352 1356 1365 1370 1369 1388 1393]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 1404]]} + {:process 5 :type :ok :f :txn :value [[:append 7 1397]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 1405]]} + {:process 6 :type :ok :f :txn :value [[:append 2 1398]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337 1347 1353 1357 1359 1360 1378 1385 1389 1397]]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1406]]} + {:process 2 :type :ok :f :txn :value [[:append 7 1402]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 4 1401]]} {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 619]]} - {:process 0 :type :fail :f :txn :value [[:append 2 619]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 620]]} - {:process 0 :type :fail :f :txn :value [[:append 1 620]]} + {:process 7 :type :ok :f :txn :value [[:append 3 1400]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 7 1399]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1407]]} + {:process 2 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243 1267 1278 1291 1296 1304 1308 1309 1320 1323 1332 1334 1335 1345 1349 1364 1374 1392]]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 1408]]} + {:process 0 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246 1250 1251 1274 1281 1288 1294 1293 1295 1316 1319 1322 1333 1336 1339 1362 1377 1379 1382 1400]]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1409]]} + {:process 7 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354 1361 1363 1367 1375 1394 1401]]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 1410]]} + {:process 5 :type :ok :f :txn :value [[:append 4 1405]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 2 1403]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 1411]]} + {:process 3 :type :ok :f :txn :value [[:append 4 1404]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 1412]]} + {:process 5 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254 1265 1283 1285 1307 1314 1325 1326 1328 1344 1346 1352 1356 1365 1370 1369 1388 1393]]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 1413]]} + {:process 6 :type :ok :f :txn :value [[:append 0 1406]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1414]]} + {:process 4 :type :ok :f :txn :value [[:append 6 1407]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 5 1410]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 1415]]} + {:process 2 :type :ok :f :txn :value [[:append 1 1408]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 1416]]} + {:process 0 :type :ok :f :txn :value [[:append 2 1409]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1417]]} + {:process 3 :type :ok :f :txn :value [[:append 3 1412]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 2 1413]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 1418]]} + {:process 4 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254 1265 1283 1285 1307 1314 1325 1326 1328 1344 1346 1352 1356 1365 1370 1369 1388 1393 1410]]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1419]]} + {:process 1 :type :ok :f :txn :value [[:append 1 1411]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 5 1414]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180 1204 1217 1223 1230 1244 1245 1247 1256 1258 1266 1268 1270 1282 1287 1300 1310 1330 1343 1355 1358 1371 1368 1373 1384 1383 1395 1398 1403 1409 1413]]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 1420]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354 1361 1363 1367 1375 1394 1401 1405 1404]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 1421]]} + {:process 6 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243 1267 1278 1291 1296 1304 1308 1309 1320 1323 1332 1334 1335 1345 1349 1364 1374 1392 1407]]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1422]]} + {:process 7 :type :ok :f :txn :value [[:append 6 1415]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 0 1416]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 1 1417]]} {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 621]]} - {:process 0 :type :fail :f :txn :value [[:append 7 621]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 622]]} - {:process 0 :type :fail :f :txn :value [[:append 6 622]]} + {:process 7 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337 1347 1353 1357 1359 1360 1378 1385 1389 1397 1402 1399]]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 1423]]} + {:process 5 :type :ok :f :txn :value [[:append 3 1418]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 4 1419]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1424]]} + {:process 2 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246 1250 1251 1274 1281 1288 1294 1293 1295 1316 1319 1322 1333 1336 1339 1362 1377 1379 1382 1400 1412 1418]]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 1425]]} + {:process 0 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340 1351 1366 1380 1381 1386 1396 1406 1416]]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1426]]} + {:process 3 :type :ok :f :txn :value [[:append 1 1420]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 1427]]} + {:process 5 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340 1351 1366 1380 1381 1386 1396 1406 1416]]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 1428]]} + {:process 1 :type :ok :f :txn :value [[:append 3 1421]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 1429]]} + {:process 6 :type :ok :f :txn :value [[:append 3 1422]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1430]]} + {:process 0 :type :ok :f :txn :value [[:append 7 1426]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1431]]} + {:process 7 :type :ok :f :txn :value [[:append 0 1423]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 1432]]} + {:process 4 :type :ok :f :txn :value [[:append 3 1424]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 2 1425]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 1433]]} + {:process 5 :type :ok :f :txn :value [[:append 1 1428]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 1434]]} + {:process 3 :type :ok :f :txn :value [[:append 0 1427]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 6 1429]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180 1204 1217 1223 1230 1244 1245 1247 1256 1258 1266 1268 1270 1282 1287 1300 1310 1330 1343 1355 1358 1371 1368 1373 1384 1383 1395 1398 1403 1409 1413 1425]]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1435]]} + {:process 6 :type :ok :f :txn :value [[:append 4 1430]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337 1347 1353 1357 1359 1360 1378 1385 1389 1397 1402 1399 1426]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 1436]]} + {:process 1 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254 1265 1283 1285 1307 1314 1325 1326 1328 1344 1346 1352 1356 1365 1370 1369 1388 1393 1410 1414]]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 1437]]} + {:process 0 :type :ok :f :txn :value [[:append 6 1431]]} {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 623]]} - {:process 0 :type :fail :f :txn :value [[:append 4 623]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 624]]} - {:process 0 :type :fail :f :txn :value [[:append 3 624]]} + {:process 6 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350 1372 1376 1387 1390 1391 1408 1411 1417 1420 1428]]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1438]]} + {:process 7 :type :ok :f :txn :value [[:append 1 1432]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254 1265 1283 1285 1307 1314 1325 1326 1328 1344 1346 1352 1356 1365 1370 1369 1388 1393 1410 1414]]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1439]]} + {:process 2 :type :ok :f :txn :value [[:append 5 1433]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 6 1434]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180 1204 1217 1223 1230 1244 1245 1247 1256 1258 1266 1268 1270 1282 1287 1300 1310 1330 1343 1355 1358 1371 1368 1373 1384 1383 1395 1398 1403 1409 1413 1425]]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 1440]]} + {:process 4 :type :ok :f :txn :value [[:append 1 1435]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1441]]} + {:process 2 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354 1361 1363 1367 1375 1394 1401 1405 1404 1419 1430]]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 1442]]} + {:process 1 :type :ok :f :txn :value [[:append 0 1437]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 1443]]} + {:process 5 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337 1347 1353 1357 1359 1360 1378 1385 1389 1397 1402 1399 1426]]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 1444]]} + {:process 3 :type :ok :f :txn :value [[:append 6 1436]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 1445]]} + {:process 6 :type :ok :f :txn :value [[:append 2 1438]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1446]]} + {:process 0 :type :ok :f :txn :value [[:append 4 1439]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1447]]} + {:process 1 :type :ok :f :txn :value [[:append 7 1443]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 0 1441]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 3 1440]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 1448]]} + {:process 5 :type :ok :f :txn :value [[:append 4 1444]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 1449]]} + {:process 2 :type :ok :f :txn :value [[:append 7 1442]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 1450]]} + {:process 1 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180 1204 1217 1223 1230 1244 1245 1247 1256 1258 1266 1268 1270 1282 1287 1300 1310 1330 1343 1355 1358 1371 1368 1373 1384 1383 1395 1398 1403 1409 1413 1425 1438]]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 1451]]} + {:process 3 :type :ok :f :txn :value [[:append 5 1445]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337 1347 1353 1357 1359 1360 1378 1385 1389 1397 1402 1399 1426 1443 1442]]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1452]]} + {:process 6 :type :ok :f :txn :value [[:append 7 1446]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354 1361 1363 1367 1375 1394 1401 1405 1404 1419 1430 1439 1444]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 1453]]} + {:process 0 :type :ok :f :txn :value [[:append 3 1447]]} {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 625]]} - {:process 0 :type :fail :f :txn :value [[:append 1 625]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 626]]} - {:process 0 :type :fail :f :txn :value [[:append 0 626]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 627]]} - {:process 0 :type :fail :f :txn :value [[:append 6 627]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 628]]} - {:process 0 :type :fail :f :txn :value [[:append 5 628]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 629]]} - {:process 6 :type :fail :f :txn :value [[:append 1 535]]} + {:process 6 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340 1351 1366 1380 1381 1386 1396 1406 1416 1423 1427 1437 1441]]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1454]]} + {:process 7 :type :ok :f :txn :value [[:append 4 1448]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 6 1450]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180 1204 1217 1223 1230 1244 1245 1247 1256 1258 1266 1268 1270 1282 1287 1300 1310 1330 1343 1355 1358 1371 1368 1373 1384 1383 1395 1398 1403 1409 1413 1425 1438]]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1455]]} + {:process 5 :type :ok :f :txn :value [[:append 5 1449]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 1 1451]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 1456]]} + {:process 7 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254 1265 1283 1285 1307 1314 1325 1326 1328 1344 1346 1352 1356 1365 1370 1369 1388 1393 1410 1414 1433 1445 1449]]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 1457]]} + {:process 2 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350 1372 1376 1387 1390 1391 1408 1411 1417 1420 1428 1432 1435 1451]]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 1458]]} + {:process 4 :type :ok :f :txn :value [[:append 6 1452]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1459]]} + {:process 5 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180 1204 1217 1223 1230 1244 1245 1247 1256 1258 1266 1268 1270 1282 1287 1300 1310 1330 1343 1355 1358 1371 1368 1373 1384 1383 1395 1398 1403 1409 1413 1425 1438]]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 1460]]} + {:process 3 :type :ok :f :txn :value [[:append 3 1453]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 1461]]} + {:process 6 :type :ok :f :txn :value [[:append 5 1454]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1462]]} + {:process 1 :type :ok :f :txn :value [[:append 4 1456]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 1 1455]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1463]]} + {:process 2 :type :ok :f :txn :value [[:append 0 1458]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 1464]]} + {:process 7 :type :ok :f :txn :value [[:append 6 1457]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 1465]]} + {:process 1 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246 1250 1251 1274 1281 1288 1294 1293 1295 1316 1319 1322 1333 1336 1339 1362 1377 1379 1382 1400 1412 1418 1421 1422 1424 1440 1447 1453]]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 1466]]} + {:process 3 :type :ok :f :txn :value [[:append 2 1461]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 5 1459]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 3 1460]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 1467]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350 1372 1376 1387 1390 1391 1408 1411 1417 1420 1428 1432 1435 1451 1455]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 1468]]} + {:process 4 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354 1361 1363 1367 1375 1394 1401 1405 1404 1419 1430 1439 1444 1448 1456]]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1469]]} + {:process 6 :type :ok :f :txn :value [[:append 6 1462]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 0 1463]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 3 1464]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 7 1465]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246 1250 1251 1274 1281 1288 1294 1293 1295 1316 1319 1322 1333 1336 1339 1362 1377 1379 1382 1400 1412 1418 1421 1422 1424 1440 1447 1453 1460 1464]]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1470]]} + {:process 1 :type :ok :f :txn :value [[:append 6 1466]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 1471]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337 1347 1353 1357 1359 1360 1378 1385 1389 1397 1402 1399 1426 1443 1442 1446 1465]]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1472]]} + {:process 2 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180 1204 1217 1223 1230 1244 1245 1247 1256 1258 1266 1268 1270 1282 1287 1300 1310 1330 1343 1355 1358 1371 1368 1373 1384 1383 1395 1398 1403 1409 1413 1425 1438 1461]]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 1473]]} + {:process 7 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340 1351 1366 1380 1381 1386 1396 1406 1416 1423 1427 1437 1441 1458 1463]]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 1474]]} + {:process 5 :type :ok :f :txn :value [[:append 0 1467]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 0 1468]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 1475]]} + {:process 4 :type :ok :f :txn :value [[:append 3 1469]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1476]]} + {:process 5 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350 1372 1376 1387 1390 1391 1408 1411 1417 1420 1428 1432 1435 1451 1455]]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 1477]]} + {:process 6 :type :ok :f :txn :value [[:append 4 1470]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1478]]} + {:process 1 :type :ok :f :txn :value [[:append 5 1471]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 6 1472]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1479]]} + {:process 2 :type :ok :f :txn :value [[:append 5 1473]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 1480]]} + {:process 7 :type :ok :f :txn :value [[:append 1 1474]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 1481]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340 1351 1366 1380 1381 1386 1396 1406 1416 1423 1427 1437 1441 1458 1463 1467 1468]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 1482]]} + {:process 4 :type :ok :f :txn :value [[:append 2 1476]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 7 1475]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350 1372 1376 1387 1390 1391 1408 1411 1417 1420 1428 1432 1435 1451 1455 1474]]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1483]]} + {:process 3 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243 1267 1278 1291 1296 1304 1308 1309 1320 1323 1332 1334 1335 1345 1349 1364 1374 1392 1407 1415 1429 1431 1434 1436 1450 1452 1457 1462 1466 1472]]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 1484]]} + {:process 6 :type :ok :f :txn :value [[:append 1 1478]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 3 629]]} - {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 630]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 631]]} - {:process 0 :type :fail :f :txn :value [[:append 2 630]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 7 631]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 633]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 632]]} - {:process 6 :type :fail :f :txn :value [[:append 0 633]]} + {:process 5 :type :ok :f :txn :value [[:append 6 1477]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 1485]]} + {:process 0 :type :ok :f :txn :value [[:append 5 1479]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 2 [8 15 17 19 31 34 66 67 85 90 97 101 100 104 109 111 127 135 141 145 150 186 188 192 212 223 228 224 230 231 236 234 252 265 266 276 277 311 317 324 338 351 352 355 356 362 364 368 379 391 390 401 404 434 454 457 462 477 475 474 493 494 495 497 504 513 516 534 535 561 577 585 591 605 602 606 619 617 623 631 632 646 643 662 661 690 704 717 720 729 730 734 747 748 751 758 761 770 773 789 795 817 832 846 847 859 860 863 877 874 880 883 886 896 903 915 927 944 962 970 975 984 985 991 1004 1005 1007 1012 1016 1026 1033 1045 1050 1076 1087 1095 1102 1111 1118 1121 1129 1135 1134 1138 1143 1153 1161 1171 1180 1204 1217 1223 1230 1244 1245 1247 1256 1258 1266 1268 1270 1282 1287 1300 1310 1330 1343 1355 1358 1371 1368 1373 1384 1383 1395 1398 1403 1409 1413 1425 1438 1461 1476]]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1486]]} + {:process 1 :type :ok :f :txn :value [[:append 7 1482]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 1487]]} + {:process 2 :type :ok :f :txn :value [[:append 4 1480]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 2 1481]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354 1361 1363 1367 1375 1394 1401 1405 1404 1419 1430 1439 1444 1448 1456 1470 1480]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1488]]} + {:process 2 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337 1347 1353 1357 1359 1360 1378 1385 1389 1397 1402 1399 1426 1443 1442 1446 1465 1475 1482]]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 1489]]} + {:process 7 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246 1250 1251 1274 1281 1288 1294 1293 1295 1316 1319 1322 1333 1336 1339 1362 1377 1379 1382 1400 1412 1418 1421 1422 1424 1440 1447 1453 1460 1464 1469]]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 1490]]} + {:process 5 :type :ok :f :txn :value [[:append 7 1485]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 0 1483]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1491]]} + {:process 3 :type :ok :f :txn :value [[:append 5 1484]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 1492]]} + {:process 5 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354 1361 1363 1367 1375 1394 1401 1405 1404 1419 1430 1439 1444 1448 1456 1470 1480]]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 1493]]} + {:process 1 :type :ok :f :txn :value [[:append 2 1487]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 3 1488]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1494]]} + {:process 6 :type :ok :f :txn :value [[:append 7 1486]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1495]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350 1372 1376 1387 1390 1391 1408 1411 1417 1420 1428 1432 1435 1451 1455 1474 1478]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 1496]]} + {:process 3 :type :ok :f :txn :value [[:append 4 1492]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 7 1491]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 6 1489]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 1497]]} + {:process 7 :type :ok :f :txn :value [[:append 4 1490]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 1498]]} + {:process 5 :type :ok :f :txn :value [[:append 5 1493]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 1499]]} + {:process 3 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246 1250 1251 1274 1281 1288 1294 1293 1295 1316 1319 1322 1333 1336 1339 1362 1377 1379 1382 1400 1412 1418 1421 1422 1424 1440 1447 1453 1460 1464 1469 1488]]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 1500]]} + {:process 4 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243 1267 1278 1291 1296 1304 1308 1309 1320 1323 1332 1334 1335 1345 1349 1364 1374 1392 1407 1415 1429 1431 1434 1436 1450 1452 1457 1462 1466 1472 1477 1489]]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1501]]} + {:process 6 :type :ok :f :txn :value [[:append 0 1495]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 634]]} - {:process 0 :type :fail :f :txn :value [[:append 0 632]]} - {:process 6 :type :fail :f :txn :value [[:append 6 634]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 636]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 635]]} - {:process 6 :type :fail :f :txn :value [[:append 3 636]]} - {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 637]]} - {:process 0 :type :fail :f :txn :value [[:append 7 635]]} + {:process 0 :type :ok :f :txn :value [[:append 2 1494]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254 1265 1283 1285 1307 1314 1325 1326 1328 1344 1346 1352 1356 1365 1370 1369 1388 1393 1410 1414 1433 1445 1449 1454 1459 1471 1473 1479 1484 1493]]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1502]]} + {:process 0 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350 1372 1376 1387 1390 1391 1408 1411 1417 1420 1428 1432 1435 1451 1455 1474 1478]]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1503]]} + {:process 2 :type :ok :f :txn :value [[:append 1 1497]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 5 1498]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 4 1496]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 1504]]} + {:process 2 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340 1351 1366 1380 1381 1386 1396 1406 1416 1423 1427 1437 1441 1458 1463 1467 1468 1483 1495]]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 1505]]} + {:process 4 :type :ok :f :txn :value [[:append 5 1501]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1506]]} + {:process 3 :type :ok :f :txn :value [[:append 2 1500]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 1507]]} + {:process 7 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243 1267 1278 1291 1296 1304 1308 1309 1320 1323 1332 1334 1335 1345 1349 1364 1374 1392 1407 1415 1429 1431 1434 1436 1450 1452 1457 1462 1466 1472 1477 1489]]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 1508]]} + {:process 5 :type :ok :f :txn :value [[:append 2 1499]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 0 1503]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1509]]} + {:process 5 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246 1250 1251 1274 1281 1288 1294 1293 1295 1316 1319 1322 1333 1336 1339 1362 1377 1379 1382 1400 1412 1418 1421 1422 1424 1440 1447 1453 1460 1464 1469 1488]]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 1510]]} + {:process 1 :type :ok :f :txn :value [[:append 3 1504]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 6 1502]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1511]]} + {:process 1 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243 1267 1278 1291 1296 1304 1308 1309 1320 1323 1332 1334 1335 1345 1349 1364 1374 1392 1407 1415 1429 1431 1434 1436 1450 1452 1457 1462 1466 1472 1477 1489 1502]]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 1512]]} + {:process 3 :type :ok :f :txn :value [[:append 1 1507]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 4 1506]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 3 1505]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 1513]]} + {:process 7 :type :ok :f :txn :value [[:append 7 1508]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 1514]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340 1351 1366 1380 1381 1386 1396 1406 1416 1423 1427 1437 1441 1458 1463 1467 1468 1483 1495 1503]]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 1515]]} + {:process 4 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246 1250 1251 1274 1281 1288 1294 1293 1295 1316 1319 1322 1333 1336 1339 1362 1377 1379 1382 1400 1412 1418 1421 1422 1424 1440 1447 1453 1460 1464 1469 1488 1504 1505]]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1516]]} + {:process 5 :type :ok :f :txn :value [[:append 0 1510]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 1517]]} + {:process 0 :type :ok :f :txn :value [[:append 7 1509]]} {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 638]]} - {:process 0 :type :fail :f :txn :value [[:append 5 638]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 639]]} - {:process 0 :type :fail :f :txn :value [[:append 4 639]]} + {:process 6 :type :ok :f :txn :value [[:append 3 1511]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243 1267 1278 1291 1296 1304 1308 1309 1320 1323 1332 1334 1335 1345 1349 1364 1374 1392 1407 1415 1429 1431 1434 1436 1450 1452 1457 1462 1466 1472 1477 1489 1502]]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1518]]} + {:process 2 :type :ok :f :txn :value [[:append 2 1513]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 5 1512]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 1519]]} + {:process 6 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354 1361 1363 1367 1375 1394 1401 1405 1404 1419 1430 1439 1444 1448 1456 1470 1480 1492 1490 1496 1506]]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1520]]} + {:process 3 :type :ok :f :txn :value [[:append 7 1515]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 1521]]} + {:process 2 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254 1265 1283 1285 1307 1314 1325 1326 1328 1344 1346 1352 1356 1365 1370 1369 1388 1393 1410 1414 1433 1445 1449 1454 1459 1471 1473 1479 1484 1493 1498 1501 1512]]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 1522]]} + {:process 4 :type :ok :f :txn :value [[:append 2 1516]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1523]]} + {:process 7 :type :ok :f :txn :value [[:append 0 1514]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 1 1517]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350 1372 1376 1387 1390 1391 1408 1411 1417 1420 1428 1432 1435 1451 1455 1474 1478 1497 1507 1517]]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 1524]]} + {:process 5 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243 1267 1278 1291 1296 1304 1308 1309 1320 1323 1332 1334 1335 1345 1349 1364 1374 1392 1407 1415 1429 1431 1434 1436 1450 1452 1457 1462 1466 1472 1477 1489 1502]]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 1525]]} + {:process 0 :type :ok :f :txn :value [[:append 5 1518]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1526]]} + {:process 1 :type :ok :f :txn :value [[:append 0 1519]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 1 1523]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 1 1520]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1527]]} + {:process 2 :type :ok :f :txn :value [[:append 4 1522]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 1528]]} + {:process 3 :type :ok :f :txn :value [[:append 6 1521]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337 1347 1353 1357 1359 1360 1378 1385 1389 1397 1402 1399 1426 1443 1442 1446 1465 1475 1482 1485 1486 1491 1508 1509 1515]]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 1529]]} + {:process 4 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340 1351 1366 1380 1381 1386 1396 1406 1416 1423 1427 1437 1441 1458 1463 1467 1468 1483 1495 1503 1510 1514 1519]]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1530]]} + {:process 3 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254 1265 1283 1285 1307 1314 1325 1326 1328 1344 1346 1352 1356 1365 1370 1369 1388 1393 1410 1414 1433 1445 1449 1454 1459 1471 1473 1479 1484 1493 1498 1501 1512 1518]]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 1531]]} + {:process 7 :type :ok :f :txn :value [[:append 2 1524]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 1532]]} + {:process 5 :type :ok :f :txn :value [[:append 7 1525]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 1533]]} + {:process 0 :type :ok :f :txn :value [[:append 4 1526]]} {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 640]]} - {:process 0 :type :fail :f :txn :value [[:append 2 640]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 641]]} - {:process 0 :type :fail :f :txn :value [[:append 1 641]]} + {:process 6 :type :ok :f :txn :value [[:append 2 1527]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 7 1528]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:r 3 [4 12 13 25 33 46 50 59 60 61 78 82 84 94 96 108 124 134 137 146 147 165 175 179 184 185 204 208 216 221 226 238 250 261 264 274 278 290 303 306 313 315 331 341 344 349 354 365 387 388 392 397 411 415 426 429 433 445 456 469 471 476 487 500 514 515 518 523 540 543 555 558 565 576 583 596 601 603 615 625 642 644 647 654 670 671 681 686 692 700 710 727 735 737 740 754 769 775 778 776 794 799 810 813 819 829 838 851 862 864 868 881 898 902 909 911 925 924 935 941 951 953 965 977 990 992 997 1011 1025 1031 1032 1040 1047 1052 1063 1069 1082 1084 1090 1104 1119 1122 1123 1140 1158 1160 1163 1168 1172 1183 1193 1197 1208 1209 1211 1237 1246 1250 1251 1274 1281 1288 1294 1293 1295 1316 1319 1322 1333 1336 1339 1362 1377 1379 1382 1400 1412 1418 1421 1422 1424 1440 1447 1453 1460 1464 1469 1488 1504 1505 1511]]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1534]]} + {:process 1 :type :ok :f :txn :value [[:append 2 1529]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 1535]]} + {:process 6 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337 1347 1353 1357 1359 1360 1378 1385 1389 1397 1402 1399 1426 1443 1442 1446 1465 1475 1482 1485 1486 1491 1508 1509 1515 1525 1528]]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1536]]} + {:process 2 :type :ok :f :txn :value [[:r 6 [2 9 28 43 49 47 51 64 71 74 80 88 122 121 129 149 156 162 166 163 168 170 172 190 200 205 210 214 249 254 257 273 289 288 291 293 299 300 301 314 328 330 339 342 374 381 389 402 412 413 416 428 430 432 435 439 450 452 468 473 498 517 521 528 537 541 539 557 556 560 563 567 580 581 594 600 626 641 655 656 667 666 665 684 683 682 695 696 707 711 724 726 752 771 782 783 790 792 796 812 811 818 822 823 835 836 852 856 882 900 906 910 921 923 926 937 939 950 948 949 960 967 981 987 1009 1029 1035 1041 1046 1053 1055 1067 1068 1073 1075 1079 1089 1098 1107 1114 1141 1156 1157 1166 1176 1182 1184 1194 1195 1196 1205 1207 1218 1224 1234 1243 1267 1278 1291 1296 1304 1308 1309 1320 1323 1332 1334 1335 1345 1349 1364 1374 1392 1407 1415 1429 1431 1434 1436 1450 1452 1457 1462 1466 1472 1477 1489 1502 1521]]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 1537]]} + {:process 5 :type :ok :f :txn :value [[:append 4 1533]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 4 1531]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 1538]]} + {:process 7 :type :ok :f :txn :value [[:append 3 1532]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 7 1530]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1539]]} + {:process 5 :type :ok :f :txn :value [[:r 5 [11 14 24 37 52 55 56 65 72 76 87 91 93 110 115 117 126 152 164 171 176 177 193 196 203 207 211 222 220 237 246 247 253 284 294 295 305 308 319 323 332 335 337 346 350 363 376 377 380 408 423 424 442 447 455 459 461 467 470 482 488 499 509 510 544 545 549 554 570 575 584 589 590 595 597 613 616 627 635 636 668 673 675 685 703 706 708 713 719 722 723 742 745 756 764 767 797 801 808 809 830 831 837 842 845 849 855 867 869 884 892 901 920 931 942 943 955 957 964 968 972 978 982 995 998 1010 1021 1022 1051 1061 1066 1074 1080 1086 1092 1096 1101 1106 1115 1117 1128 1136 1149 1154 1178 1189 1198 1200 1201 1212 1219 1227 1228 1238 1240 1241 1254 1265 1283 1285 1307 1314 1325 1326 1328 1344 1346 1352 1356 1365 1370 1369 1388 1393 1410 1414 1433 1445 1449 1454 1459 1471 1473 1479 1484 1493 1498 1501 1512 1518]]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 1540]]} + {:process 7 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354 1361 1363 1367 1375 1394 1401 1405 1404 1419 1430 1439 1444 1448 1456 1470 1480 1492 1490 1496 1506 1522 1526 1533 1531]]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 1541]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1536]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1542]]} + {:process 2 :type :fail :f :txn :value [[:append 1 1537]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 1543]]} + {:process 1 :type :fail :f :txn :value [[:append 1 1535]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :info :f :txn :value [[:append 2 1534]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1544]]} + {:process 3 :type :info :f :txn :value [[:append 3 1538]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :info :f :txn :value [[:append 5 1541]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 1545]]} + {:process 4 :type :info :f :txn :value [[:append 6 1539]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :info :f :txn :value [[:append 2 1540]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 1546]]} + {:process 1 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354 1361 1363 1367 1375 1394 1401 1405 1404 1419 1430 1439 1444 1448 1456 1470 1480 1492 1490 1496 1506 1522 1526 1533 1531]]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 1547]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 1548]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1549]]} + {:process 7 :type :ok :f :txn :value [[:append 6 1545]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337 1347 1353 1357 1359 1360 1378 1385 1389 1397 1402 1399 1426 1443 1442 1446 1465 1475 1482 1485 1486 1491 1508 1509 1515 1525 1528 1530]]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 1550]]} + {:process 3 :type :ok :f :txn :value [[:append 1 1548]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 1551]]} + {:process 4 :type :ok :f :txn :value [[:append 4 1549]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1552]]} + {:process 2 :type :fail :f :txn :value [[:append 0 1543]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 3 1546]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 1 1544]]} {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 642]]} - {:process 0 :type :fail :f :txn :value [[:append 7 642]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 643]]} - {:process 0 :type :fail :f :txn :value [[:append 6 643]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1542]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 3 1547]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 1553]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 1554]]} + {:process 5 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340 1351 1366 1380 1381 1386 1396 1406 1416 1423 1427 1437 1441 1458 1463 1467 1468 1483 1495 1503 1510 1514 1519]]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 1555]]} + {:process 0 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340 1351 1366 1380 1381 1386 1396 1406 1416 1423 1427 1437 1441 1458 1463 1467 1468 1483 1495 1503 1510 1514 1519]]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1556]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1557]]} + {:process 4 :type :fail :f :txn :value [[:append 3 1552]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 1551]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 1550]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 1558]]} + {:process 5 :type :ok :f :txn :value [[:append 1 1555]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 1559]]} + {:process 1 :type :ok :f :txn :value [[:append 6 1553]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 7 1556]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1560]]} + {:process 2 :type :ok :f :txn :value [[:append 2 1554]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 1561]]} + {:process 6 :type :ok :f :txn :value [[:append 3 1557]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1562]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1563]]} + {:process 3 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337 1347 1353 1357 1359 1360 1378 1385 1389 1397 1402 1399 1426 1443 1442 1446 1465 1475 1482 1485 1486 1491 1508 1509 1515 1525 1528 1530 1556]]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 1564]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 1565]]} + {:process 7 :type :ok :f :txn :value [[:append 1 1558]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 6 1559]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 1566]]} + {:process 3 :type :ok :f :txn :value [[:append 6 1564]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 1567]]} + {:process 4 :type :ok :f :txn :value [[:append 1 1563]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1568]]} + {:process 5 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337 1347 1353 1357 1359 1360 1378 1385 1389 1397 1402 1399 1426 1443 1442 1446 1465 1475 1482 1485 1486 1491 1508 1509 1515 1525 1528 1530 1556]]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 1569]]} + {:process 1 :type :ok :f :txn :value [[:append 0 1565]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 1570]]} + {:process 2 :type :ok :f :txn :value [[:append 5 1561]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 4 1562]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 6 1560]]} {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354 1361 1363 1367 1375 1394 1401 1405 1404 1419 1430 1439 1444 1448 1456 1470 1480 1492 1490 1496 1506 1522 1526 1533 1531 1549 1562]]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 1571]]} + {:process 6 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350 1372 1376 1387 1390 1391 1408 1411 1417 1420 1428 1432 1435 1451 1455 1474 1478 1497 1507 1517 1523 1520 1548 1555 1558 1563]]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1572]]} {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 644]]} - {:process 0 :type :fail :f :txn :value [[:append 4 644]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 645]]} - {:process 0 :type :fail :f :txn :value [[:append 3 645]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1573]]} + {:process 7 :type :ok :f :txn :value [[:append 3 1566]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 1574]]} + {:process 3 :type :ok :f :txn :value [[:append 5 1567]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 7 1570]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 4 1569]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 1575]]} + {:process 4 :type :ok :f :txn :value [[:append 0 1568]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 2 1572]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1576]]} + {:process 3 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354 1361 1363 1367 1375 1394 1401 1405 1404 1419 1430 1439 1444 1448 1456 1470 1480 1492 1490 1496 1506 1522 1526 1533 1531 1549 1562 1569]]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 1577]]} + {:process 2 :type :ok :f :txn :value [[:append 7 1571]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 1578]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 1579]]} + {:process 4 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337 1347 1353 1357 1359 1360 1378 1385 1389 1397 1402 1399 1426 1443 1442 1446 1465 1475 1482 1485 1486 1491 1508 1509 1515 1525 1528 1530 1556 1570 1571]]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1580]]} + {:process 0 :type :ok :f :txn :value [[:append 4 1573]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1581]]} + {:process 5 :type :ok :f :txn :value [[:append 5 1575]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 4 1574]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :ok :f :txn :value [[:append 1 1579]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 1582]]} + {:process 2 :type :ok :f :txn :value [[:append 6 1578]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 6 1580]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1583]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 1584]]} + {:process 6 :type :ok :f :txn :value [[:append 7 1576]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 1585]]} + {:process 2 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350 1372 1376 1387 1390 1391 1408 1411 1417 1420 1428 1432 1435 1451 1455 1474 1478 1497 1507 1517 1523 1520 1548 1555 1558 1563 1579]]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 1586]]} + {:process 6 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340 1351 1366 1380 1381 1386 1396 1406 1416 1423 1427 1437 1441 1458 1463 1467 1468 1483 1495 1503 1510 1514 1519 1565 1568]]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1587]]} + {:process 4 :type :ok :f :txn :value [[:append 5 1583]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 3 1584]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 1588]]} + {:process 3 :type :info :f :txn :value [[:append 3 1577]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 1589]]} + {:process 1 :type :ok :f :txn :value [[:append 4 1582]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354 1361 1363 1367 1375 1394 1401 1405 1404 1419 1430 1439 1444 1448 1456 1470 1480 1492 1490 1496 1506 1522 1526 1533 1531 1549 1562 1569 1573 1574 1582]]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1590]]} + {:process 7 :type :ok :f :txn :value [[:append 6 1585]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 1591]]} + {:process 2 :type :ok :f :txn :value [[:append 0 1586]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 1592]]} + {:process 0 :type :info :f :txn :value [[:append 3 1581]]} {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 1593]]} + {:process 6 :type :ok :f :txn :value [[:append 5 1587]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1594]]} {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 646]]} - {:process 0 :type :fail :f :txn :value [[:append 1 646]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 647]]} - {:process 0 :type :fail :f :txn :value [[:append 0 647]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 1595]]} + {:process 3 :type :info :f :txn :value [[:append 2 1589]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 7 1591]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 3 1592]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 3 1590]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1596]]} + {:process 3 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350 1372 1376 1387 1390 1391 1408 1411 1417 1420 1428 1432 1435 1451 1455 1474 1478 1497 1507 1517 1523 1520 1548 1555 1558 1563 1579]]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 1597]]} + {:process 6 :type :ok :f :txn :value [[:append 6 1594]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340 1351 1366 1380 1381 1386 1396 1406 1416 1423 1427 1437 1441 1458 1463 1467 1468 1483 1495 1503 1510 1514 1519 1565 1568 1586]]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 1598]]} + {:process 1 :type :ok :f :txn :value [[:append 6 1593]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 1599]]} + {:process 5 :type :info :f :txn :value [[:append 0 1588]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 1600]]} + {:process 0 :type :ok :f :txn :value [[:append 1 1595]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1601]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1602]]} + {:process 5 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350 1372 1376 1387 1390 1391 1408 1411 1417 1420 1428 1432 1435 1451 1455 1474 1478 1497 1507 1517 1523 1520 1548 1555 1558 1563 1579 1595]]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 1603]]} + {:process 3 :type :ok :f :txn :value [[:append 0 1597]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 1604]]} + {:process 4 :type :ok :f :txn :value [[:append 2 1596]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 1 1598]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 1605]]} + {:process 1 :type :ok :f :txn :value [[:append 5 1599]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 0 1601]]} {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 648]]} - {:process 0 :type :fail :f :txn :value [[:append 6 648]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 649]]} - {:process 0 :type :fail :f :txn :value [[:append 5 649]]} + {:process 6 :type :ok :f :txn :value [[:append 4 1602]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1606]]} + {:process 4 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350 1372 1376 1387 1390 1391 1408 1411 1417 1420 1428 1432 1435 1451 1455 1474 1478 1497 1507 1517 1523 1520 1548 1555 1558 1563 1579 1595 1598]]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1607]]} + {:process 2 :type :ok :f :txn :value [[:append 5 1600]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 1608]]} + {:process 1 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340 1351 1366 1380 1381 1386 1396 1406 1416 1423 1427 1437 1441 1458 1463 1467 1468 1483 1495 1503 1510 1514 1519 1565 1568 1586 1597 1601]]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 1609]]} + {:process 0 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337 1347 1353 1357 1359 1360 1378 1385 1389 1397 1402 1399 1426 1443 1442 1446 1465 1475 1482 1485 1486 1491 1508 1509 1515 1525 1528 1530 1556 1570 1571 1576 1591]]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 1610]]} + {:process 5 :type :ok :f :txn :value [[:append 6 1603]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 1611]]} + {:process 3 :type :ok :f :txn :value [[:append 7 1604]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 2 1605]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 1612]]} + {:process 0 :type :ok :f :txn :value [[:append 6 1610]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1613]]} + {:process 6 :type :ok :f :txn :value [[:append 1 1606]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 1614]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1615]]} + {:process 0 :type :ok :f :txn :value [[:append 5 1613]]} {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 650]]} - {:process 0 :type :fail :f :txn :value [[:append 3 650]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 651]]} - {:process 0 :type :fail :f :txn :value [[:append 2 651]]} + {:process 3 :type :ok :f :txn :value [[:append 5 1612]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 1616]]} + {:process 0 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354 1361 1363 1367 1375 1394 1401 1405 1404 1419 1430 1439 1444 1448 1456 1470 1480 1492 1490 1496 1506 1522 1526 1533 1531 1549 1562 1569 1573 1574 1582 1602]]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 1617]]} + {:process 7 :type :ok :f :txn :value [[:append 4 1614]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 1618]]} + {:process 5 :type :info :f :txn :value [[:append 7 1611]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 7 1615]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1619]]} + {:process 5 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354 1361 1363 1367 1375 1394 1401 1405 1404 1419 1430 1439 1444 1448 1456 1470 1480 1492 1490 1496 1506 1522 1526 1533 1531 1549 1562 1569 1573 1574 1582 1602 1614]]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 1620]]} + {:process 3 :type :ok :f :txn :value [[:append 4 1616]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :info :f :txn :value [[:append 7 1609]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 1621]]} + {:process 4 :type :info :f :txn :value [[:append 0 1607]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1622]]} + {:process 2 :type :info :f :txn :value [[:append 4 1608]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 1623]]} + {:process 6 :type :ok :f :txn :value [[:append 0 1619]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 5 1618]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 3 1617]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 1624]]} + {:process 2 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337 1347 1353 1357 1359 1360 1378 1385 1389 1397 1402 1399 1426 1443 1442 1446 1465 1475 1482 1485 1486 1491 1508 1509 1515 1525 1528 1530 1556 1570 1571 1576 1591 1604 1615]]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 1625]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1626]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 1627]]} + {:process 2 :type :ok :f :txn :value [[:append 6 1625]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 1628]]} + {:process 6 :type :ok :f :txn :value [[:append 6 1626]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1629]]} + {:process 0 :type :ok :f :txn :value [[:append 2 1624]]} {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 652]]} - {:process 0 :type :fail :f :txn :value [[:append 0 652]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 653]]} - {:process 0 :type :fail :f :txn :value [[:append 7 653]]} + {:process 1 :type :fail :f :txn :value [[:append 2 1621]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 1623]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 1630]]} + {:process 5 :type :info :f :txn :value [[:append 5 1620]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 1631]]} + {:process 7 :type :ok :f :txn :value [[:append 7 1627]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 1632]]} + {:process 0 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350 1372 1376 1387 1390 1391 1408 1411 1417 1420 1428 1432 1435 1451 1455 1474 1478 1497 1507 1517 1523 1520 1548 1555 1558 1563 1579 1595 1598 1606]]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 1633]]} + {:process 1 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350 1372 1376 1387 1390 1391 1408 1411 1417 1420 1428 1432 1435 1451 1455 1474 1478 1497 1507 1517 1523 1520 1548 1555 1558 1563 1579 1595 1598 1606]]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 1634]]} + {:process 2 :type :ok :f :txn :value [[:append 1 1628]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 3 1629]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340 1351 1366 1380 1381 1386 1396 1406 1416 1423 1427 1437 1441 1458 1463 1467 1468 1483 1495 1503 1510 1514 1519 1565 1568 1586 1597 1601 1619]]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 1635]]} + {:process 4 :type :fail :f :txn :value [[:append 7 1622]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 0 1632]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354 1361 1363 1367 1375 1394 1401 1405 1404 1419 1430 1439 1444 1448 1456 1470 1480 1492 1490 1496 1506 1522 1526 1533 1531 1549 1562 1569 1573 1574 1582 1602 1614 1616]]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1636]]} + {:process 0 :type :ok :f :txn :value [[:append 0 1633]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 1637]]} + {:process 5 :type :ok :f :txn :value [[:append 2 1631]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 1 1630]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1638]]} + {:process 7 :type :ok :f :txn :value [[:r 1 [5 22 26 35 38 40 53 58 86 103 106 114 113 130 133 140 142 151 154 157 174 180 183 189 215 229 233 241 240 258 259 269 272 275 283 281 296 309 312 318 343 357 359 366 375 385 384 398 400 399 405 425 436 446 448 479 481 484 492 505 511 520 522 524 529 531 546 553 566 569 571 607 609 612 618 639 640 645 651 650 658 660 679 680 694 698 701 732 736 743 746 766 768 772 777 780 784 787 806 807 821 824 833 861 866 873 879 888 894 897 905 907 914 919 932 934 945 956 961 988 993 1001 1006 1014 1023 1028 1030 1036 1042 1049 1056 1064 1072 1081 1091 1113 1126 1130 1137 1142 1151 1155 1159 1167 1173 1177 1179 1191 1202 1216 1221 1242 1253 1260 1263 1264 1280 1284 1290 1289 1302 1303 1306 1321 1329 1348 1350 1372 1376 1387 1390 1391 1408 1411 1417 1420 1428 1432 1435 1451 1455 1474 1478 1497 1507 1517 1523 1520 1548 1555 1558 1563 1579 1595 1598 1606 1628 1630]]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 1639]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 1640]]} + {:process 3 :type :ok :f :txn :value [[:r 0 [7 16 18 29 32 41 54 57 63 68 73 77 92 95 98 99 105 119 132 136 139 158 178 181 191 195 194 206 218 219 227 232 235 245 262 267 263 279 304 307 320 322 321 333 347 348 358 361 360 372 393 394 403 406 431 438 441 443 444 460 472 486 483 485 489 501 525 527 530 532 559 568 573 572 574 586 599 610 611 614 621 629 653 649 657 663 687 691 699 697 702 718 725 738 739 741 753 759 779 781 785 793 814 820 826 825 828 848 853 865 870 871 876 891 904 908 913 918 938 947 952 954 959 979 980 994 996 999 1008 1018 1034 1037 1043 1048 1062 1077 1078 1085 1088 1103 1108 1120 1124 1131 1133 1147 1162 1165 1174 1175 1186 1203 1210 1213 1215 1225 1235 1252 1255 1257 1262 1277 1292 1297 1301 1305 1311 1331 1338 1341 1340 1351 1366 1380 1381 1386 1396 1406 1416 1423 1427 1437 1441 1458 1463 1467 1468 1483 1495 1503 1510 1514 1519 1565 1568 1586 1597 1601 1619 1632 1633]]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 1641]]} + {:process 0 :type :ok :f :txn :value [[:append 7 1637]]} {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :ok :f :txn :value [[:append 1 1636]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1642]]} + {:process 1 :type :info :f :txn :value [[:append 4 1634]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 1643]]} + {:process 2 :type :fail :f :txn :value [[:append 3 1635]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 1644]]} + {:process 4 :type :ok :f :txn :value [[:append 5 1638]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1645]]} + {:process 7 :type :ok :f :txn :value [[:append 2 1639]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 1646]]} + {:process 5 :type :ok :f :txn :value [[:append 0 1640]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 1647]]} {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 654]]} - {:process 0 :type :fail :f :txn :value [[:append 5 654]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 655]]} - {:process 0 :type :fail :f :txn :value [[:append 4 655]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 656]]} - {:process 6 :type :fail :f :txn :value [[:append 1 637]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 657]]} - {:process 6 :type :fail :f :txn :value [[:append 2 657]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 1648]]} + {:process 3 :type :ok :f :txn :value [[:append 7 1641]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 1649]]} + {:process 6 :type :ok :f :txn :value [[:append 2 1642]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 658]]} - {:process 0 :type :fail :f :txn :value [[:append 2 656]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 659]]} - {:process 0 :type :fail :f :txn :value [[:append 1 659]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 660]]} - {:process 0 :type :fail :f :txn :value [[:append 7 660]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 661]]} - {:process 0 :type :fail :f :txn :value [[:append 6 661]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 662]]} - {:process 0 :type :fail :f :txn :value [[:append 4 662]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 663]]} - {:process 0 :type :fail :f :txn :value [[:append 3 663]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 664]]} - {:process 0 :type :fail :f :txn :value [[:append 1 664]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 665]]} - {:process 0 :type :fail :f :txn :value [[:append 0 665]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 666]]} - {:process 0 :type :fail :f :txn :value [[:append 6 666]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 667]]} - {:process 0 :type :fail :f :txn :value [[:append 5 667]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 668]]} - {:process 0 :type :fail :f :txn :value [[:append 3 668]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 669]]} - {:process 6 :type :fail :f :txn :value [[:append 0 658]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 670]]} - {:process 6 :type :fail :f :txn :value [[:append 5 670]]} + {:process 6 :type :ok :f :txn :value [[:r 7 [1 6 21 23 36 39 44 62 70 79 81 83 102 107 116 120 123 143 144 148 153 161 173 187 197 201 209 213 225 239 242 248 251 268 271 280 285 292 302 316 325 327 336 340 353 367 369 378 373 395 407 410 414 417 437 449 451 453 458 478 480 491 490 502 512 519 533 538 542 551 562 579 578 582 587 604 608 620 622 628 638 648 659 669 672 676 689 705 709 715 712 731 733 744 749 755 765 774 788 798 802 805 816 834 839 841 843 858 857 875 878 890 889 899 912 922 929 933 946 963 966 971 974 986 989 1000 1002 1015 1019 1027 1039 1054 1057 1060 1071 1093 1094 1100 1105 1110 1116 1127 1132 1145 1146 1150 1169 1181 1187 1188 1206 1220 1222 1229 1231 1232 1249 1259 1261 1272 1271 1276 1298 1312 1315 1318 1337 1347 1353 1357 1359 1360 1378 1385 1389 1397 1402 1399 1426 1443 1442 1446 1465 1475 1482 1485 1486 1491 1508 1509 1515 1525 1528 1530 1556 1570 1571 1576 1591 1604 1615 1627 1637 1641]]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1650]]} + {:process 3 :type :ok :f :txn :value [[:append 6 1649]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :ok :f :txn :value [[:append 2 1644]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :ok :f :txn :value [[:append 1 1647]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :ok :f :txn :value [[:append 3 1646]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :ok :f :txn :value [[:append 5 1648]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 1651]]} + {:process 1 :type :ok :f :txn :value [[:append 3 1643]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :ok :f :txn :value [[:append 4 1645]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 1652]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 1653]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 1654]]} + {:process 7 :type :ok :f :txn :value [[:r 4 [3 10 20 27 30 42 45 48 69 75 89 112 118 125 128 131 138 155 159 160 167 169 182 198 199 202 217 243 244 255 256 260 270 282 286 287 297 298 310 326 329 334 345 371 370 383 382 386 396 409 427 440 463 464 465 466 496 503 506 508 507 526 536 548 547 550 552 564 588 592 593 598 624 630 633 634 637 652 664 674 677 678 688 693 716 714 721 728 750 757 762 760 763 786 791 803 800 804 815 827 840 844 850 854 872 885 887 893 895 916 917 928 930 936 940 958 973 969 976 983 1003 1013 1017 1020 1024 1038 1044 1058 1059 1065 1070 1083 1099 1097 1109 1112 1125 1139 1144 1148 1152 1164 1170 1185 1190 1192 1199 1214 1226 1233 1236 1239 1248 1269 1275 1273 1279 1286 1299 1313 1317 1324 1327 1342 1354 1361 1363 1367 1375 1394 1401 1405 1404 1419 1430 1439 1444 1448 1456 1470 1480 1492 1490 1496 1506 1522 1526 1533 1531 1549 1562 1569 1573 1574 1582 1602 1614 1616 1645]]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 1655]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 1656]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1657]]} + {:process 7 :type :ok :f :txn :value [[:append 5 1655]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 1658]]} + {:process 5 :type :ok :f :txn :value [[:append 7 1654]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 1659]]} + {:process 1 :type :ok :f :txn :value [[:append 5 1656]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 1660]]} + {:process 0 :type :fail :f :txn :value [[:append 4 1651]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :ok :f :txn :value [[:append 4 1652]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 1661]]} + {:process 2 :type :ok :f :txn :value [[:append 4 1653]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 1662]]} + {:process 4 :type :ok :f :txn :value [[:append 2 1657]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1663]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1650]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1664]]} + {:process 4 :type :fail :f :txn :value [[:append 1 1663]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1665]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1664]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 1665]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 671]]} - {:process 0 :type :fail :f :txn :value [[:append 2 669]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 672]]} - {:process 0 :type :fail :f :txn :value [[:append 0 672]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 673]]} - {:process 0 :type :fail :f :txn :value [[:append 7 673]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 674]]} - {:process 6 :type :fail :f :txn :value [[:append 3 671]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 675]]} - {:process 0 :type :fail :f :txn :value [[:append 5 674]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 676]]} - {:process 6 :type :fail :f :txn :value [[:append 4 675]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1666]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1667]]} + {:process 4 :type :fail :f :txn :value [[:append 6 1666]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1667]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1668]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1669]]} + {:process 4 :type :fail :f :txn :value [[:append 4 1668]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1670]]} + {:process 4 :type :fail :f :txn :value [[:append 3 1670]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1671]]} + {:process 4 :type :fail :f :txn :value [[:append 1 1671]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1672]]} + {:process 4 :type :fail :f :txn :value [[:append 0 1672]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1673]]} + {:process 4 :type :fail :f :txn :value [[:append 6 1673]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1674]]} + {:process 4 :type :fail :f :txn :value [[:append 5 1674]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1675]]} + {:process 4 :type :fail :f :txn :value [[:append 3 1675]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1676]]} + {:process 4 :type :fail :f :txn :value [[:append 2 1676]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1677]]} + {:process 4 :type :fail :f :txn :value [[:append 0 1677]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1678]]} + {:process 4 :type :fail :f :txn :value [[:append 7 1678]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1679]]} + {:process 4 :type :fail :f :txn :value [[:append 5 1679]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1680]]} + {:process 4 :type :fail :f :txn :value [[:append 4 1680]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1681]]} + {:process 4 :type :fail :f :txn :value [[:append 2 1681]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1682]]} + {:process 4 :type :fail :f :txn :value [[:append 1 1682]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1683]]} + {:process 4 :type :fail :f :txn :value [[:append 7 1683]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1684]]} + {:process 4 :type :fail :f :txn :value [[:append 6 1684]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1685]]} + {:process 4 :type :fail :f :txn :value [[:append 4 1685]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1686]]} + {:process 4 :type :fail :f :txn :value [[:append 3 1686]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1687]]} + {:process 4 :type :fail :f :txn :value [[:append 1 1687]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1688]]} + {:process 4 :type :fail :f :txn :value [[:append 0 1688]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1689]]} + {:process 4 :type :fail :f :txn :value [[:append 6 1689]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1690]]} + {:process 4 :type :fail :f :txn :value [[:append 5 1690]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1691]]} + {:process 4 :type :fail :f :txn :value [[:append 3 1691]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1692]]} + {:process 4 :type :fail :f :txn :value [[:append 2 1692]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1693]]} + {:process 4 :type :fail :f :txn :value [[:append 0 1693]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1694]]} + {:process 4 :type :fail :f :txn :value [[:append 7 1694]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1695]]} + {:process 4 :type :fail :f :txn :value [[:append 5 1695]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1696]]} + {:process 4 :type :fail :f :txn :value [[:append 4 1696]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1697]]} + {:process 4 :type :fail :f :txn :value [[:append 2 1697]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1698]]} + {:process 4 :type :fail :f :txn :value [[:append 1 1698]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1699]]} + {:process 4 :type :fail :f :txn :value [[:append 7 1699]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1700]]} + {:process 4 :type :fail :f :txn :value [[:append 6 1700]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1701]]} + {:process 4 :type :fail :f :txn :value [[:append 4 1701]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1702]]} + {:process 4 :type :fail :f :txn :value [[:append 3 1702]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1703]]} + {:process 4 :type :fail :f :txn :value [[:append 1 1703]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1704]]} + {:process 4 :type :fail :f :txn :value [[:append 0 1704]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1705]]} + {:process 4 :type :fail :f :txn :value [[:append 6 1705]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1706]]} + {:process 4 :type :fail :f :txn :value [[:append 5 1706]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1707]]} + {:process 4 :type :fail :f :txn :value [[:append 3 1707]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1708]]} + {:process 4 :type :fail :f :txn :value [[:append 2 1708]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1709]]} + {:process 4 :type :fail :f :txn :value [[:append 0 1709]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1710]]} + {:process 4 :type :fail :f :txn :value [[:append 7 1710]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1711]]} + {:process 4 :type :fail :f :txn :value [[:append 5 1711]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1712]]} + {:process 4 :type :fail :f :txn :value [[:append 4 1712]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1713]]} + {:process 4 :type :fail :f :txn :value [[:append 2 1713]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1714]]} + {:process 4 :type :fail :f :txn :value [[:append 1 1714]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1715]]} + {:process 4 :type :fail :f :txn :value [[:append 7 1715]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1716]]} + {:process 4 :type :fail :f :txn :value [[:append 6 1716]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1717]]} + {:process 4 :type :fail :f :txn :value [[:append 4 1717]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1718]]} + {:process 4 :type :fail :f :txn :value [[:append 3 1718]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1719]]} + {:process 4 :type :fail :f :txn :value [[:append 1 1719]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1720]]} + {:process 4 :type :fail :f :txn :value [[:append 0 1720]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1721]]} + {:process 4 :type :fail :f :txn :value [[:append 6 1721]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1722]]} + {:process 4 :type :fail :f :txn :value [[:append 5 1722]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1723]]} + {:process 4 :type :fail :f :txn :value [[:append 3 1723]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1724]]} + {:process 4 :type :fail :f :txn :value [[:append 2 1724]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1725]]} + {:process 4 :type :fail :f :txn :value [[:append 0 1725]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1726]]} + {:process 4 :type :fail :f :txn :value [[:append 7 1726]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1727]]} + {:process 4 :type :fail :f :txn :value [[:append 5 1727]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1728]]} + {:process 4 :type :fail :f :txn :value [[:append 4 1728]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1729]]} + {:process 4 :type :fail :f :txn :value [[:append 2 1729]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1730]]} + {:process 4 :type :fail :f :txn :value [[:append 1 1730]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 1731]]} + {:process 4 :type :fail :f :txn :value [[:append 7 1731]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1732]]} + {:process 4 :type :fail :f :txn :value [[:append 6 1732]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 1733]]} + {:process 4 :type :fail :f :txn :value [[:append 4 1733]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1734]]} + {:process 4 :type :fail :f :txn :value [[:append 3 1734]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 1735]]} + {:process 4 :type :fail :f :txn :value [[:append 1 1735]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 1736]]} + {:process 4 :type :fail :f :txn :value [[:append 0 1736]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 1737]]} + {:process 4 :type :fail :f :txn :value [[:append 6 1737]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 1738]]} + {:process 4 :type :fail :f :txn :value [[:append 5 1738]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 1739]]} + {:process 4 :type :fail :f :txn :value [[:append 3 1739]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 1740]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1669]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 677]]} - {:process 6 :type :fail :f :txn :value [[:append 2 677]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 678]]} - {:process 6 :type :fail :f :txn :value [[:append 7 678]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1741]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1741]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1742]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1742]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 4 676]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 679]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 680]]} - {:process 6 :type :fail :f :txn :value [[:append 5 679]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 681]]} - {:process 0 :type :fail :f :txn :value [[:append 2 680]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 682]]} - {:process 0 :type :fail :f :txn :value [[:append 1 682]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 683]]} - {:process 0 :type :fail :f :txn :value [[:append 7 683]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 684]]} - {:process 6 :type :fail :f :txn :value [[:append 6 681]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1743]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1743]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1744]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1744]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 685]]} - {:process 0 :type :fail :f :txn :value [[:append 6 684]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 686]]} - {:process 6 :type :fail :f :txn :value [[:append 4 685]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 687]]} - {:process 6 :type :fail :f :txn :value [[:append 1 687]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1745]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1745]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1746]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1746]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 688]]} - {:process 0 :type :fail :f :txn :value [[:append 4 686]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 689]]} - {:process 6 :type :fail :f :txn :value [[:append 7 688]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 690]]} - {:process 6 :type :fail :f :txn :value [[:append 0 690]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1747]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1747]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1748]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1748]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 691]]} - {:process 0 :type :fail :f :txn :value [[:append 3 689]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 692]]} - {:process 6 :type :fail :f :txn :value [[:append 6 691]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 693]]} - {:process 0 :type :fail :f :txn :value [[:append 1 692]]} - {:process 6 :type :fail :f :txn :value [[:append 3 693]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1749]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1749]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1750]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1750]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 695]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 694]]} - {:process 6 :type :fail :f :txn :value [[:append 1 695]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 696]]} - {:process 0 :type :fail :f :txn :value [[:append 0 694]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 2 696]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 697]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1751]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1751]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1752]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1752]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 698]]} - {:process 0 :type :fail :f :txn :value [[:append 6 697]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 699]]} - {:process 0 :type :fail :f :txn :value [[:append 5 699]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 700]]} - {:process 6 :type :fail :f :txn :value [[:append 0 698]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 701]]} - {:process 0 :type :fail :f :txn :value [[:append 3 700]]} - {:process 6 :type :fail :f :txn :value [[:append 5 701]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1753]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1753]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1754]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1754]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 703]]} - {:process 6 :type :fail :f :txn :value [[:append 3 703]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 704]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 702]]} - {:process 6 :type :fail :f :txn :value [[:append 4 704]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1755]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1755]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1756]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1756]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 705]]} - {:process 6 :type :fail :f :txn :value [[:append 2 705]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 706]]} - {:process 0 :type :fail :f :txn :value [[:append 2 702]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 707]]} - {:process 0 :type :fail :f :txn :value [[:append 0 707]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 708]]} - {:process 0 :type :fail :f :txn :value [[:append 7 708]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 709]]} - {:process 6 :type :fail :f :txn :value [[:append 7 706]]} - {:process 0 :type :fail :f :txn :value [[:append 5 709]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1757]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1757]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1758]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1758]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 710]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 711]]} - {:process 0 :type :fail :f :txn :value [[:append 4 710]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 712]]} - {:process 0 :type :fail :f :txn :value [[:append 2 712]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 713]]} - {:process 6 :type :fail :f :txn :value [[:append 5 711]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 714]]} - {:process 6 :type :fail :f :txn :value [[:append 6 714]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1759]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1759]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1760]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1760]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 715]]} - {:process 0 :type :fail :f :txn :value [[:append 1 713]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 716]]} - {:process 0 :type :fail :f :txn :value [[:append 7 716]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 717]]} - {:process 6 :type :fail :f :txn :value [[:append 4 715]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 718]]} - {:process 6 :type :fail :f :txn :value [[:append 1 718]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1761]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1761]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1762]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1762]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 719]]} - {:process 0 :type :fail :f :txn :value [[:append 6 717]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 720]]} - {:process 6 :type :fail :f :txn :value [[:append 7 719]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 721]]} - {:process 0 :type :fail :f :txn :value [[:append 4 720]]} - {:process 6 :type :fail :f :txn :value [[:append 0 721]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1763]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1763]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1764]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1764]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 723]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 722]]} - {:process 6 :type :fail :f :txn :value [[:append 6 723]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 724]]} - {:process 0 :type :fail :f :txn :value [[:append 3 722]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 725]]} - {:process 0 :type :fail :f :txn :value [[:append 1 725]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 726]]} - {:process 6 :type :fail :f :txn :value [[:append 3 724]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1765]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1765]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1766]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1766]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 727]]} - {:process 0 :type :fail :f :txn :value [[:append 0 726]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 728]]} - {:process 6 :type :fail :f :txn :value [[:append 1 727]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 729]]} - {:process 6 :type :fail :f :txn :value [[:append 2 729]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1767]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1767]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1768]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1768]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 730]]} - {:process 0 :type :fail :f :txn :value [[:append 6 728]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 731]]} - {:process 6 :type :fail :f :txn :value [[:append 0 730]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 732]]} - {:process 6 :type :fail :f :txn :value [[:append 5 732]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1769]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1769]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1770]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1770]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 733]]} - {:process 0 :type :fail :f :txn :value [[:append 5 731]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 734]]} - {:process 0 :type :fail :f :txn :value [[:append 3 734]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 735]]} - {:process 6 :type :fail :f :txn :value [[:append 3 733]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 736]]} - {:process 0 :type :fail :f :txn :value [[:append 2 735]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 737]]} - {:process 6 :type :fail :f :txn :value [[:append 4 736]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1771]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1771]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1772]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1772]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 738]]} - {:process 0 :type :fail :f :txn :value [[:append 0 737]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 739]]} - {:process 0 :type :fail :f :txn :value [[:append 7 739]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 740]]} - {:process 0 :type :fail :f :txn :value [[:append 5 740]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 741]]} - {:process 6 :type :fail :f :txn :value [[:append 2 738]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 742]]} - {:process 6 :type :fail :f :txn :value [[:append 7 742]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1773]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1773]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1774]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1774]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 743]]} - {:process 0 :type :fail :f :txn :value [[:append 4 741]]} - {:process 6 :type :fail :f :txn :value [[:append 5 743]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 744]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 6 744]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1775]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1775]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1776]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1776]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 746]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 745]]} - {:process 6 :type :fail :f :txn :value [[:append 4 746]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 747]]} - {:process 6 :type :fail :f :txn :value [[:append 1 747]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1777]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1777]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1778]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1778]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 748]]} - {:process 0 :type :fail :f :txn :value [[:append 2 745]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 749]]} - {:process 0 :type :fail :f :txn :value [[:append 1 749]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 7 748]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 751]]} - {:process 6 :type :fail :f :txn :value [[:append 0 751]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1779]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1779]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1780]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1780]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 752]]} - {:process 6 :type :fail :f :txn :value [[:append 6 752]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 753]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 750]]} - {:process 6 :type :fail :f :txn :value [[:append 3 753]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1781]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1781]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1782]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1782]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 754]]} - {:process 6 :type :fail :f :txn :value [[:append 1 754]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 755]]} - {:process 0 :type :fail :f :txn :value [[:append 7 750]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 756]]} - {:process 6 :type :fail :f :txn :value [[:append 2 755]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1783]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1783]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1784]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1784]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 757]]} - {:process 0 :type :fail :f :txn :value [[:append 6 756]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 758]]} - {:process 6 :type :fail :f :txn :value [[:append 0 757]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 759]]} - {:process 6 :type :fail :f :txn :value [[:append 5 759]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1785]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1785]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1786]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1786]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 760]]} - {:process 0 :type :fail :f :txn :value [[:append 4 758]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 761]]} - {:process 0 :type :fail :f :txn :value [[:append 3 761]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 762]]} - {:process 6 :type :fail :f :txn :value [[:append 3 760]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 763]]} - {:process 6 :type :fail :f :txn :value [[:append 4 763]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1787]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1787]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1788]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1788]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 764]]} - {:process 0 :type :fail :f :txn :value [[:append 1 762]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 765]]} - {:process 6 :type :fail :f :txn :value [[:append 2 764]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 766]]} - {:process 0 :type :fail :f :txn :value [[:append 0 765]]} - {:process 6 :type :fail :f :txn :value [[:append 7 766]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1789]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1789]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1790]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1790]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 767]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 768]]} - {:process 6 :type :fail :f :txn :value [[:append 5 767]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 769]]} - {:process 0 :type :fail :f :txn :value [[:append 6 768]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 770]]} - {:process 6 :type :fail :f :txn :value [[:append 6 769]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1791]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1791]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1792]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1792]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 771]]} - {:process 0 :type :fail :f :txn :value [[:append 5 770]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 772]]} - {:process 0 :type :fail :f :txn :value [[:append 3 772]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 773]]} - {:process 6 :type :fail :f :txn :value [[:append 4 771]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 774]]} - {:process 0 :type :fail :f :txn :value [[:append 2 773]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 775]]} - {:process 6 :type :fail :f :txn :value [[:append 1 774]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1793]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1793]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1794]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1794]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 776]]} - {:process 0 :type :fail :f :txn :value [[:append 0 775]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 777]]} - {:process 0 :type :fail :f :txn :value [[:append 7 777]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 778]]} - {:process 6 :type :fail :f :txn :value [[:append 7 776]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 779]]} - {:process 6 :type :fail :f :txn :value [[:append 0 779]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1795]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1795]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1796]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1796]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 780]]} - {:process 0 :type :fail :f :txn :value [[:append 5 778]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 781]]} - {:process 0 :type :fail :f :txn :value [[:append 4 781]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 782]]} - {:process 6 :type :fail :f :txn :value [[:append 6 780]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 783]]} - {:process 6 :type :fail :f :txn :value [[:append 3 783]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1797]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1797]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1798]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1798]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 784]]} - {:process 0 :type :fail :f :txn :value [[:append 2 782]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 785]]} - {:process 0 :type :fail :f :txn :value [[:append 1 785]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 786]]} - {:process 6 :type :fail :f :txn :value [[:append 1 784]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 787]]} - {:process 0 :type :fail :f :txn :value [[:append 7 786]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 788]]} - {:process 6 :type :fail :f :txn :value [[:append 2 787]]} - {:process 0 :type :fail :f :txn :value [[:append 6 788]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 789]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1799]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1799]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1800]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1800]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 4 789]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 790]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 791]]} - {:process 0 :type :fail :f :txn :value [[:append 3 790]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 792]]} - {:process 6 :type :fail :f :txn :value [[:append 0 791]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 793]]} - {:process 0 :type :fail :f :txn :value [[:append 1 792]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 794]]} - {:process 0 :type :fail :f :txn :value [[:append 0 794]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 795]]} - {:process 0 :type :fail :f :txn :value [[:append 6 795]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 796]]} - {:process 0 :type :fail :f :txn :value [[:append 5 796]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 797]]} - {:process 0 :type :fail :f :txn :value [[:append 3 797]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 798]]} - {:process 0 :type :fail :f :txn :value [[:append 2 798]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 799]]} - {:process 0 :type :fail :f :txn :value [[:append 0 799]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 800]]} - {:process 0 :type :fail :f :txn :value [[:append 7 800]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 801]]} - {:process 0 :type :fail :f :txn :value [[:append 5 801]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 802]]} - {:process 0 :type :fail :f :txn :value [[:append 4 802]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 803]]} - {:process 0 :type :fail :f :txn :value [[:append 2 803]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 804]]} - {:process 0 :type :fail :f :txn :value [[:append 1 804]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 805]]} - {:process 0 :type :fail :f :txn :value [[:append 7 805]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 806]]} - {:process 0 :type :fail :f :txn :value [[:append 6 806]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 807]]} - {:process 0 :type :fail :f :txn :value [[:append 4 807]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 808]]} - {:process 0 :type :fail :f :txn :value [[:append 3 808]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 809]]} - {:process 6 :type :fail :f :txn :value [[:append 5 793]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1801]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1801]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1802]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1802]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 810]]} - {:process 0 :type :fail :f :txn :value [[:append 1 809]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 811]]} - {:process 6 :type :fail :f :txn :value [[:append 3 810]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 812]]} - {:process 6 :type :fail :f :txn :value [[:append 4 812]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1803]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1803]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1804]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1804]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 813]]} - {:process 0 :type :fail :f :txn :value [[:append 0 811]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 814]]} - {:process 6 :type :fail :f :txn :value [[:append 2 813]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 815]]} - {:process 6 :type :fail :f :txn :value [[:append 7 815]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1805]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1805]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1806]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1806]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 816]]} - {:process 0 :type :fail :f :txn :value [[:append 6 814]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 817]]} - {:process 0 :type :fail :f :txn :value [[:append 5 817]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 818]]} - {:process 6 :type :fail :f :txn :value [[:append 5 816]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 819]]} - {:process 6 :type :fail :f :txn :value [[:append 6 819]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1807]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1807]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1808]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1808]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 820]]} - {:process 0 :type :fail :f :txn :value [[:append 3 818]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 821]]} - {:process 0 :type :fail :f :txn :value [[:append 2 821]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 822]]} - {:process 6 :type :fail :f :txn :value [[:append 4 820]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 823]]} - {:process 0 :type :fail :f :txn :value [[:append 0 822]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 824]]} - {:process 6 :type :fail :f :txn :value [[:append 1 823]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1809]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1809]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1810]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1810]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 825]]} - {:process 0 :type :fail :f :txn :value [[:append 7 824]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 826]]} - {:process 6 :type :fail :f :txn :value [[:append 7 825]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 827]]} - {:process 6 :type :fail :f :txn :value [[:append 0 827]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1811]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1811]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1812]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1812]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 828]]} - {:process 0 :type :fail :f :txn :value [[:append 5 826]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 829]]} - {:process 6 :type :fail :f :txn :value [[:append 6 828]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 830]]} - {:process 0 :type :fail :f :txn :value [[:append 4 829]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 831]]} - {:process 6 :type :fail :f :txn :value [[:append 3 830]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1813]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1813]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1814]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1814]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 832]]} - {:process 0 :type :fail :f :txn :value [[:append 2 831]]} - {:process 6 :type :fail :f :txn :value [[:append 1 832]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 834]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 833]]} - {:process 6 :type :fail :f :txn :value [[:append 2 834]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1815]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1815]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1816]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1816]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 835]]} - {:process 0 :type :fail :f :txn :value [[:append 1 833]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 836]]} - {:process 6 :type :fail :f :txn :value [[:append 0 835]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 837]]} - {:process 6 :type :fail :f :txn :value [[:append 5 837]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1817]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1817]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1818]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1818]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 838]]} - {:process 0 :type :fail :f :txn :value [[:append 7 836]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 839]]} - {:process 6 :type :fail :f :txn :value [[:append 3 838]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 840]]} - {:process 6 :type :fail :f :txn :value [[:append 4 840]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1819]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1819]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1820]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1820]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 841]]} - {:process 0 :type :fail :f :txn :value [[:append 6 839]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 2 841]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 842]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 843]]} - {:process 0 :type :fail :f :txn :value [[:append 4 842]]} - {:process 6 :type :fail :f :txn :value [[:append 7 843]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1821]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1821]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1822]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1822]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 845]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 844]]} - {:process 6 :type :fail :f :txn :value [[:append 5 845]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 846]]} - {:process 0 :type :fail :f :txn :value [[:append 3 844]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 847]]} - {:process 6 :type :fail :f :txn :value [[:append 6 846]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1823]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1823]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1824]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1824]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 848]]} - {:process 0 :type :fail :f :txn :value [[:append 1 847]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 849]]} - {:process 0 :type :fail :f :txn :value [[:append 0 849]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 850]]} - {:process 6 :type :fail :f :txn :value [[:append 4 848]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 851]]} - {:process 6 :type :fail :f :txn :value [[:append 1 851]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1825]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1825]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1826]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1826]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 852]]} - {:process 0 :type :fail :f :txn :value [[:append 6 850]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 853]]} - {:process 6 :type :fail :f :txn :value [[:append 7 852]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 854]]} - {:process 6 :type :fail :f :txn :value [[:append 0 854]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1827]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1827]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1828]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1828]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 855]]} - {:process 0 :type :fail :f :txn :value [[:append 5 853]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 856]]} - {:process 6 :type :fail :f :txn :value [[:append 6 855]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 857]]} - {:process 6 :type :fail :f :txn :value [[:append 3 857]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1829]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1829]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1830]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1830]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 858]]} - {:process 0 :type :fail :f :txn :value [[:append 3 856]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 859]]} - {:process 0 :type :fail :f :txn :value [[:append 2 859]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 1 858]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 861]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 860]]} - {:process 6 :type :fail :f :txn :value [[:append 2 861]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1831]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1831]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1832]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1832]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 862]]} - {:process 0 :type :fail :f :txn :value [[:append 0 860]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 863]]} - {:process 0 :type :fail :f :txn :value [[:append 7 863]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 0 862]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 865]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 864]]} - {:process 6 :type :fail :f :txn :value [[:append 5 865]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1833]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1833]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1834]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1834]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 866]]} - {:process 0 :type :fail :f :txn :value [[:append 5 864]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 867]]} - {:process 6 :type :fail :f :txn :value [[:append 3 866]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 868]]} - {:process 0 :type :fail :f :txn :value [[:append 4 867]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 869]]} - {:process 6 :type :fail :f :txn :value [[:append 4 868]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1835]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1835]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1836]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1836]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 870]]} - {:process 6 :type :fail :f :txn :value [[:append 2 870]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 871]]} - {:process 0 :type :fail :f :txn :value [[:append 2 869]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 872]]} - {:process 6 :type :fail :f :txn :value [[:append 7 871]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1837]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1837]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1838]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1838]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 873]]} - {:process 6 :type :fail :f :txn :value [[:append 5 873]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 874]]} - {:process 6 :type :fail :f :txn :value [[:append 6 874]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1839]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1839]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1840]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1840]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 875]]} - {:process 0 :type :fail :f :txn :value [[:append 1 872]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 876]]} - {:process 6 :type :fail :f :txn :value [[:append 4 875]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 877]]} - {:process 0 :type :fail :f :txn :value [[:append 7 876]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 878]]} - {:process 0 :type :fail :f :txn :value [[:append 6 878]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 1 877]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1841]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1841]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1842]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1842]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 880]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 879]]} - {:process 6 :type :fail :f :txn :value [[:append 7 880]]} - {:process 0 :type :fail :f :txn :value [[:append 4 879]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 881]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 882]]} - {:process 0 :type :fail :f :txn :value [[:append 3 881]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 883]]} - {:process 6 :type :fail :f :txn :value [[:append 0 882]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1843]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1843]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1844]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1844]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 884]]} - {:process 0 :type :fail :f :txn :value [[:append 1 883]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 885]]} - {:process 0 :type :fail :f :txn :value [[:append 0 885]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 886]]} - {:process 6 :type :fail :f :txn :value [[:append 6 884]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 887]]} - {:process 6 :type :fail :f :txn :value [[:append 3 887]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1845]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1845]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1846]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1846]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 888]]} - {:process 0 :type :fail :f :txn :value [[:append 6 886]]} - {:process 6 :type :fail :f :txn :value [[:append 1 888]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 889]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 890]]} - {:process 6 :type :fail :f :txn :value [[:append 2 889]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1847]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1847]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1848]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1848]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 891]]} - {:process 6 :type :fail :f :txn :value [[:append 0 891]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 892]]} - {:process 0 :type :fail :f :txn :value [[:append 5 890]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 893]]} - {:process 6 :type :fail :f :txn :value [[:append 5 892]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1849]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1849]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1850]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1850]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 894]]} - {:process 0 :type :fail :f :txn :value [[:append 3 893]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 895]]} - {:process 0 :type :fail :f :txn :value [[:append 2 895]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 896]]} - {:process 6 :type :fail :f :txn :value [[:append 3 894]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 897]]} - {:process 6 :type :fail :f :txn :value [[:append 4 897]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1851]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1851]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1852]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1852]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 898]]} - {:process 0 :type :fail :f :txn :value [[:append 0 896]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 899]]} - {:process 6 :type :fail :f :txn :value [[:append 2 898]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 900]]} - {:process 6 :type :fail :f :txn :value [[:append 7 900]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1853]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1853]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1854]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1854]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 901]]} - {:process 6 :type :fail :f :txn :value [[:append 5 901]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 902]]} - {:process 0 :type :fail :f :txn :value [[:append 7 899]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 903]]} - {:process 6 :type :fail :f :txn :value [[:append 6 902]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1855]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1855]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1856]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1856]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 904]]} - {:process 0 :type :fail :f :txn :value [[:append 5 903]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 905]]} - {:process 0 :type :fail :f :txn :value [[:append 4 905]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 906]]} - {:process 6 :type :fail :f :txn :value [[:append 4 904]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 907]]} - {:process 6 :type :fail :f :txn :value [[:append 1 907]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1857]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1857]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1858]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1858]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 908]]} - {:process 0 :type :fail :f :txn :value [[:append 2 906]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 909]]} - {:process 0 :type :fail :f :txn :value [[:append 1 909]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 910]]} - {:process 6 :type :fail :f :txn :value [[:append 7 908]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 911]]} - {:process 0 :type :fail :f :txn :value [[:append 7 910]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 912]]} - {:process 0 :type :fail :f :txn :value [[:append 6 912]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 913]]} - {:process 6 :type :fail :f :txn :value [[:append 0 911]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1859]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1859]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1860]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1860]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 914]]} - {:process 6 :type :fail :f :txn :value [[:append 6 914]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 915]]} - {:process 0 :type :fail :f :txn :value [[:append 4 913]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 916]]} - {:process 6 :type :fail :f :txn :value [[:append 3 915]]} - {:process 0 :type :fail :f :txn :value [[:append 3 916]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1861]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1861]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1862]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1862]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 917]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 918]]} - {:process 0 :type :fail :f :txn :value [[:append 1 917]]} - {:process 6 :type :fail :f :txn :value [[:append 1 918]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 920]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 919]]} - {:process 6 :type :fail :f :txn :value [[:append 2 920]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1863]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1863]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1864]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1864]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 921]]} - {:process 6 :type :fail :f :txn :value [[:append 0 921]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 922]]} - {:process 6 :type :fail :f :txn :value [[:append 5 922]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1865]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1865]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1866]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1866]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 923]]} - {:process 0 :type :fail :f :txn :value [[:append 0 919]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 3 923]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 924]]} - {:process 6 :type :fail :f :txn :value [[:append 4 924]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1867]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1867]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1868]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1868]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 925]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 2 925]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 926]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 927]]} - {:process 0 :type :fail :f :txn :value [[:append 6 926]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 928]]} - {:process 6 :type :fail :f :txn :value [[:append 7 927]]} - {:process 0 :type :fail :f :txn :value [[:append 5 928]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 929]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1869]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1869]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1870]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1870]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 3 929]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 930]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 931]]} - {:process 0 :type :fail :f :txn :value [[:append 2 930]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 932]]} - {:process 6 :type :fail :f :txn :value [[:append 5 931]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 933]]} - {:process 0 :type :fail :f :txn :value [[:append 0 932]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 934]]} - {:process 6 :type :fail :f :txn :value [[:append 6 933]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1871]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1871]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1872]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1872]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 935]]} - {:process 6 :type :fail :f :txn :value [[:append 4 935]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 936]]} - {:process 0 :type :fail :f :txn :value [[:append 7 934]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 937]]} - {:process 6 :type :fail :f :txn :value [[:append 1 936]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1873]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1873]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1874]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1874]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 5 937]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 938]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 939]]} - {:process 6 :type :fail :f :txn :value [[:append 7 939]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 940]]} - {:process 6 :type :fail :f :txn :value [[:append 0 940]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1875]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1875]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1876]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1876]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 941]]} - {:process 0 :type :fail :f :txn :value [[:append 4 938]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 942]]} - {:process 6 :type :fail :f :txn :value [[:append 6 941]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 943]]} - {:process 6 :type :fail :f :txn :value [[:append 3 943]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1877]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1877]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1878]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1878]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 944]]} - {:process 6 :type :fail :f :txn :value [[:append 1 944]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 945]]} - {:process 0 :type :fail :f :txn :value [[:append 2 942]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 946]]} - {:process 0 :type :fail :f :txn :value [[:append 1 946]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 947]]} - {:process 6 :type :fail :f :txn :value [[:append 2 945]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1879]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1879]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1880]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1880]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 948]]} - {:process 0 :type :fail :f :txn :value [[:append 7 947]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 949]]} - {:process 6 :type :fail :f :txn :value [[:append 0 948]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 950]]} - {:process 0 :type :fail :f :txn :value [[:append 6 949]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 951]]} - {:process 6 :type :fail :f :txn :value [[:append 5 950]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1881]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1881]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1882]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1882]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 952]]} - {:process 0 :type :fail :f :txn :value [[:append 4 951]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 953]]} - {:process 6 :type :fail :f :txn :value [[:append 3 952]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 954]]} - {:process 0 :type :fail :f :txn :value [[:append 3 953]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 955]]} - {:process 0 :type :fail :f :txn :value [[:append 1 955]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 956]]} - {:process 6 :type :fail :f :txn :value [[:append 4 954]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1883]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1883]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1884]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1884]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 957]]} - {:process 0 :type :fail :f :txn :value [[:append 0 956]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 958]]} - {:process 0 :type :fail :f :txn :value [[:append 6 958]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 959]]} - {:process 0 :type :fail :f :txn :value [[:append 5 959]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 960]]} - {:process 0 :type :fail :f :txn :value [[:append 3 960]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 961]]} - {:process 0 :type :fail :f :txn :value [[:append 2 961]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 962]]} - {:process 6 :type :fail :f :txn :value [[:append 2 957]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 963]]} - {:process 0 :type :fail :f :txn :value [[:append 0 962]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 964]]} - {:process 6 :type :fail :f :txn :value [[:append 7 963]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1885]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1885]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1886]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1886]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 965]]} - {:process 0 :type :fail :f :txn :value [[:append 7 964]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 966]]} - {:process 6 :type :fail :f :txn :value [[:append 5 965]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 967]]} - {:process 0 :type :fail :f :txn :value [[:append 5 966]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 968]]} - {:process 6 :type :fail :f :txn :value [[:append 6 967]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1887]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1887]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1888]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1888]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 969]]} - {:process 0 :type :fail :f :txn :value [[:append 4 968]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 970]]} - {:process 6 :type :fail :f :txn :value [[:append 4 969]]} - {:process 0 :type :fail :f :txn :value [[:append 2 970]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 971]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 972]]} - {:process 0 :type :fail :f :txn :value [[:append 1 971]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 973]]} - {:process 6 :type :fail :f :txn :value [[:append 1 972]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1889]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1889]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1890]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1890]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 974]]} - {:process 0 :type :fail :f :txn :value [[:append 7 973]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 975]]} - {:process 6 :type :fail :f :txn :value [[:append 7 974]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 976]]} - {:process 6 :type :fail :f :txn :value [[:append 0 976]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1891]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1891]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1892]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1892]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 977]]} - {:process 0 :type :fail :f :txn :value [[:append 6 975]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 978]]} - {:process 6 :type :fail :f :txn :value [[:append 6 977]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 979]]} - {:process 6 :type :fail :f :txn :value [[:append 3 979]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1893]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1893]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1894]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1894]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 980]]} - {:process 0 :type :fail :f :txn :value [[:append 4 978]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 981]]} - {:process 6 :type :fail :f :txn :value [[:append 1 980]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 982]]} - {:process 0 :type :fail :f :txn :value [[:append 3 981]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 983]]} - {:process 6 :type :fail :f :txn :value [[:append 2 982]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1895]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1895]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1896]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1896]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 984]]} - {:process 0 :type :fail :f :txn :value [[:append 1 983]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 985]]} - {:process 6 :type :fail :f :txn :value [[:append 0 984]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 986]]} - {:process 0 :type :fail :f :txn :value [[:append 0 985]]} - {:process 6 :type :fail :f :txn :value [[:append 5 986]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1897]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1897]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1898]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1898]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 987]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 988]]} - {:process 6 :type :fail :f :txn :value [[:append 3 987]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 989]]} - {:process 0 :type :fail :f :txn :value [[:append 6 988]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 990]]} - {:process 0 :type :fail :f :txn :value [[:append 5 990]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 991]]} - {:process 6 :type :fail :f :txn :value [[:append 4 989]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1899]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1899]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1900]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1900]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 3 991]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 992]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 993]]} - {:process 6 :type :fail :f :txn :value [[:append 2 992]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 994]]} - {:process 0 :type :fail :f :txn :value [[:append 2 993]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 7 994]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1901]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1901]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1902]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1902]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 995]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 996]]} - {:process 0 :type :fail :f :txn :value [[:append 0 995]]} - {:process 6 :type :fail :f :txn :value [[:append 5 996]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 998]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 997]]} - {:process 6 :type :fail :f :txn :value [[:append 6 998]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1903]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1903]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1904]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1904]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 999]]} - {:process 0 :type :fail :f :txn :value [[:append 7 997]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1000]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1000]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1001]]} - {:process 6 :type :fail :f :txn :value [[:append 4 999]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1002]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1001]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1003]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1002]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1905]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1905]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1906]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1906]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1004]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1003]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1005]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1005]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1006]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1004]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1007]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1006]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1008]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1008]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1009]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1007]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1907]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1907]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1908]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1908]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1010]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1009]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1011]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1010]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1012]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1011]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1013]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1012]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1909]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1909]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1910]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1910]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1014]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1013]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1015]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1015]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1016]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1014]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1017]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1017]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1911]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1911]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1912]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1912]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1018]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1016]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1019]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1018]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1020]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1020]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1913]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1913]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1914]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1914]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1021]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1019]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1022]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1021]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1023]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1023]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1915]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1915]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1916]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1916]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1024]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1022]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1025]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1025]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1026]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1024]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1027]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1026]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1028]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1028]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1029]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1027]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1917]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1917]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1918]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1918]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1030]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1029]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1031]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1030]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1032]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1031]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1033]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1032]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1919]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1919]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1920]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1920]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1034]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1033]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1035]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1035]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1036]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1034]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1037]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1036]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1038]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1038]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1039]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1037]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1921]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1921]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1922]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1922]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1040]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1039]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1041]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1040]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1042]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1041]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1043]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1042]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1923]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1923]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1924]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1924]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1044]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1043]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1045]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1044]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1046]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1045]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1047]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1046]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1925]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1925]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1926]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1926]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1048]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1047]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1049]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1049]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1050]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1048]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1050]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1051]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1052]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1052]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1053]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1051]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1927]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1927]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1928]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1928]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1054]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1053]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1055]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1054]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1056]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1056]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1929]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1929]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1930]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1930]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1057]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1055]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1058]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1057]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1059]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1058]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1060]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1059]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1931]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1931]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1932]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1932]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1061]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1060]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1061]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1062]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1062]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1933]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1933]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1934]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1934]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1063]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1064]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1063]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1065]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1064]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1066]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1065]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1935]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1935]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1936]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1936]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1067]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1066]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1068]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1067]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1069]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1069]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1937]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1937]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1938]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1938]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1070]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1068]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1071]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1070]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1072]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1072]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1939]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1939]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1940]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1940]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1073]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1071]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1074]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1073]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1075]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1075]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1941]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1941]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1942]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1942]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1076]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1074]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1077]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1077]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1078]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1076]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1079]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1078]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1080]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1080]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1081]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1079]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1943]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1943]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1944]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1944]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1082]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1082]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1083]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1081]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1084]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1084]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1085]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1083]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1945]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1945]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1946]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1946]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1086]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1085]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1087]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1087]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1088]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1086]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1089]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1089]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1947]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1947]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1948]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1948]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1090]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1088]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1091]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1091]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1092]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1090]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1092]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1093]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1094]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1093]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1094]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1949]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1949]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1950]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1950]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1095]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1096]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1096]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1097]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1095]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1098]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1097]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1099]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1098]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1951]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1951]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1952]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1952]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1100]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1099]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1101]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1100]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1102]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1102]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1953]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1953]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1954]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1954]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1103]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1101]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1104]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1103]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1105]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1105]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1955]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1955]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1956]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1956]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1106]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1104]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1107]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1107]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1108]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1106]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1109]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1108]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1110]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1109]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1957]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1957]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1958]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1958]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1111]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1110]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1111]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1112]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1113]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1112]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1959]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1959]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1960]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1960]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1114]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1113]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1115]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1115]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1116]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1114]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1117]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1117]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1961]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1961]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1962]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1962]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1118]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1116]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1119]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1119]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1120]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1118]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1121]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1121]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1963]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1963]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1964]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1964]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1122]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1120]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1122]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1123]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1124]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1123]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1965]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1965]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1966]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1966]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1125]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1124]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1126]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1126]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1127]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1127]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1125]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1128]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1129]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1128]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1967]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1967]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1968]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1968]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1130]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1129]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1131]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1130]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1132]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1131]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1133]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1132]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1969]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1969]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1970]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1970]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1134]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1133]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1135]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1135]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1136]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1134]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1137]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1137]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1971]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1971]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1972]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1972]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1136]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1139]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1138]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1139]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1140]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1138]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1141]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1141]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1142]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1140]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1973]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1973]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1974]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1974]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1143]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1142]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1144]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1144]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1145]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1143]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1146]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1145]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1147]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1146]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1975]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1975]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1976]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1976]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1148]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1147]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1149]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1149]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1150]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1148]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1151]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1150]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1152]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1151]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1977]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1977]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1978]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1978]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1152]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1154]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1153]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1154]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1155]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1153]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1156]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1155]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1156]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1979]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1979]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1980]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1980]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1157]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1158]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1157]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1159]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1158]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1160]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1160]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1981]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1981]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1982]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1982]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1161]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1159]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1162]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1161]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1163]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1162]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1164]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1164]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1165]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1163]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1983]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1983]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1984]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1984]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1165]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1166]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1167]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1166]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1168]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1167]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1169]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1168]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1170]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1169]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1985]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1985]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1986]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1986]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1171]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1171]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1172]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1170]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1173]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1172]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1987]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1987]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1988]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1988]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1174]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1173]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1175]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1174]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1176]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1176]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 1989]]} + {:process 6 :type :fail :f :txn :value [[:append 6 1989]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1990]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1990]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1177]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1175]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1177]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1178]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1178]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 1991]]} + {:process 6 :type :fail :f :txn :value [[:append 1 1991]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1992]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1992]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1179]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1180]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1179]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1181]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1180]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1182]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1181]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 1993]]} + {:process 6 :type :fail :f :txn :value [[:append 0 1993]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1994]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1994]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1183]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1182]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1184]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1184]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1185]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1183]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1186]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1186]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 1995]]} + {:process 6 :type :fail :f :txn :value [[:append 3 1995]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 1996]]} + {:process 6 :type :fail :f :txn :value [[:append 4 1996]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1187]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1185]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1188]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1187]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1189]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1189]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 1997]]} + {:process 6 :type :fail :f :txn :value [[:append 2 1997]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 1998]]} + {:process 6 :type :fail :f :txn :value [[:append 7 1998]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1190]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1188]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1191]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1190]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1192]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1191]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1193]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1192]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 1999]]} + {:process 6 :type :fail :f :txn :value [[:append 5 1999]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2000]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2000]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1194]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1193]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1195]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1195]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1196]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1194]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1197]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1196]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1198]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1198]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1199]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1197]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2001]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2001]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2002]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2002]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1200]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1199]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1201]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1200]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1202]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1201]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1203]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1202]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2003]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2003]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2004]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2004]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1204]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1203]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1205]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1205]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1206]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1204]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1207]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1206]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1208]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1208]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1209]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1207]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2005]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2005]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2006]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2006]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1210]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1210]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1211]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1209]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1212]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1211]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2007]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2007]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2008]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2008]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1213]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1213]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1214]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1212]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1215]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1214]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2009]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2009]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2010]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2010]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1216]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1216]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1217]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1215]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1218]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1218]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1219]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1217]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2011]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2011]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2012]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2012]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1219]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1221]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1220]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1221]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1222]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1220]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1223]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1223]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2013]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2013]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2014]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2014]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1224]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1222]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1225]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1224]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1226]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1226]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2015]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2015]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2016]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2016]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1227]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1225]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1228]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1227]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1229]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1228]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1230]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1229]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2017]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2017]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2018]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2018]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1231]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1231]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1232]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1230]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1233]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1232]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2019]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2019]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2020]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2020]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1234]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1233]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1235]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1235]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1236]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1234]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1237]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1237]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2021]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2021]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2022]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2022]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1238]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1236]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1238]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1239]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1240]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1239]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2023]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2023]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2024]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2024]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1241]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1240]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1242]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1241]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1243]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1242]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1244]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1244]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1243]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1245]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2025]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2025]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2026]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2026]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1246]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1245]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1247]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1246]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1248]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1247]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1249]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1248]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2027]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2027]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2028]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2028]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1250]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1249]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1251]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1250]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1252]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1252]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2029]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2029]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2030]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2030]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1253]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1251]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1254]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1253]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1255]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1254]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1256]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1255]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2031]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2031]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2032]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2032]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1257]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1257]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1258]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1258]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2033]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2033]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2034]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2034]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1259]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1256]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1260]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1259]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1261]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1261]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2035]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2035]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2036]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2036]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1262]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1260]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1263]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1262]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1264]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1264]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2037]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2037]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2038]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2038]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1265]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1263]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1266]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1265]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1267]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1267]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2039]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2039]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2040]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2040]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1268]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1266]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1269]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1269]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1270]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1270]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1271]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1271]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1272]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1268]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1273]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1273]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2041]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2041]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2042]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2042]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1274]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1272]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1275]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1275]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1276]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1274]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1277]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1277]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2043]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2043]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2044]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2044]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1278]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1276]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1279]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1278]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1280]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1280]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2045]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2045]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2046]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2046]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1281]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1279]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1282]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1281]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1283]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1283]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2047]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2047]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2048]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2048]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1284]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1284]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1285]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1282]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1286]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1286]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1287]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1285]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2049]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2049]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2050]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2050]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1288]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1287]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1289]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1288]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1290]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1289]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1291]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1290]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2051]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2051]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2052]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2052]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1292]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1291]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1293]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1293]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1294]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1292]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1295]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1294]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1296]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1296]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1297]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1297]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1298]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1295]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2053]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2053]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2054]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2054]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1299]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1298]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1300]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1299]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1301]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1300]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1302]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1301]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2055]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2055]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2056]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2056]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1303]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1302]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1304]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1303]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1305]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1304]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1306]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1305]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2057]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2057]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2058]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2058]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1307]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1306]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1308]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1307]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1309]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1308]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1310]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1309]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2059]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2059]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2060]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2060]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1310]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1311]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1312]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1311]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1313]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1312]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1314]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1313]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1315]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1315]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1316]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1316]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1317]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1317]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1318]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1314]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2061]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2061]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2062]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2062]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1319]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1318]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1320]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1320]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1321]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1319]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1322]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1321]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1323]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1323]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1324]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1322]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2063]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2063]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2064]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2064]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1325]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1324]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1326]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1325]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1327]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1326]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1327]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2065]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2065]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2066]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2066]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1328]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1329]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1328]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1329]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1330]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1331]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1330]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2067]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2067]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2068]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2068]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1332]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1331]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1333]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1332]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1334]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1334]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2069]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2069]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2070]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2070]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1335]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1333]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1336]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1336]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1337]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1335]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1338]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1337]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1338]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1339]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2071]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2071]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2072]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2072]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1340]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1339]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1341]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1340]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1342]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1341]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1343]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1342]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2073]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2073]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2074]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2074]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1344]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1343]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1345]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1344]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1346]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1345]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1347]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1346]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2075]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2075]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2076]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2076]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1348]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1347]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1349]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1349]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1350]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1348]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1351]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1351]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2077]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2077]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2078]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2078]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1352]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1350]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1353]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1352]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1354]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1353]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1355]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1354]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2079]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2079]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2080]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2080]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1356]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1355]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1357]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1356]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1358]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1358]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2081]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2081]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2082]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2082]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1359]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1359]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1360]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1357]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1360]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1361]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2083]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2083]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2084]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2084]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1362]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1361]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1363]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1362]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1364]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1364]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2085]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2085]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2086]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2086]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1365]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1365]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1366]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1363]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1367]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1366]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2087]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2087]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2088]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2088]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1368]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1367]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1369]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1368]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1370]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1369]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1371]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1370]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2089]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2089]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2090]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2090]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1372]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1372]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1373]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1371]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1374]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1373]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2091]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2091]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2092]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2092]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1375]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1374]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1376]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1375]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1377]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1377]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2093]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2093]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2094]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2094]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1378]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1378]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1379]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1376]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1380]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1379]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2095]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2095]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2096]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2096]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1381]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1380]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1382]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1381]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1383]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1382]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1384]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1383]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2097]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2097]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2098]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2098]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1385]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1385]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1386]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1386]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2099]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2099]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2100]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2100]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1387]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1384]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1388]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1387]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1389]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1388]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1390]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1389]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2101]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2101]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2102]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2102]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1391]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1391]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1392]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1390]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1393]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1392]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2103]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2103]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2104]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2104]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1394]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1393]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1395]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1394]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1396]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1395]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1397]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1396]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2105]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2105]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2106]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2106]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1398]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1397]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1399]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1398]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1400]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1400]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2107]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2107]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2108]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2108]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1401]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1399]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1402]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1401]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1403]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1402]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1404]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1403]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2109]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2109]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2110]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2110]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1405]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1405]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1406]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1406]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2111]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2111]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2112]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2112]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1407]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1407]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1408]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1408]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2113]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2113]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2114]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2114]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1409]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1409]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1410]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1410]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2115]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2115]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2116]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2116]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1411]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1404]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1411]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1412]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1412]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2117]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2117]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2118]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2118]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1413]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1414]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1413]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1415]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1414]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1416]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1416]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1417]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1415]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2119]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2119]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2120]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2120]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1418]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1417]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1419]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1418]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1420]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1419]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1421]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1421]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1422]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1420]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2121]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2121]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2122]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2122]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1423]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1422]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1424]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1423]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1425]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1425]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2123]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2123]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2124]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2124]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1424]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1426]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1427]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1426]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1428]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1428]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2125]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2125]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2126]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2126]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1429]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1427]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1429]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1430]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1430]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2127]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2127]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2128]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2128]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1431]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1431]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1432]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1432]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2129]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2129]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2130]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2130]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1433]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1433]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1434]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1434]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2131]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2131]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2132]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2132]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1435]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1435]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1436]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1436]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2133]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2133]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2134]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2134]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1437]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1438]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1438]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1439]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1439]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1437]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1441]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1440]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1441]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2135]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2135]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2136]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2136]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1442]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1440]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1443]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1442]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1444]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1443]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1445]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1444]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2137]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2137]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2138]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2138]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1446]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1445]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1447]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1447]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1448]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1446]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1449]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1448]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1450]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1450]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1449]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2139]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2139]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2140]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2140]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1451]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1452]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1451]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1453]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1452]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1454]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1454]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1455]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1453]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2141]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2141]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2142]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2142]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1456]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1455]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1457]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1457]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1458]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1456]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1459]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1458]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1460]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1460]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1461]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1459]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2143]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2143]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2144]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2144]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1462]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1461]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1463]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1462]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1464]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1463]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1465]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1464]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2145]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2145]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2146]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2146]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1466]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1466]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1467]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1465]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1468]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1467]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2147]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2147]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2148]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2148]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1469]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1469]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1470]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1470]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2149]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2149]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2150]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2150]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1471]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1468]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1472]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1471]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1473]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1472]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1473]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2151]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2151]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2152]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2152]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1475]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1474]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1475]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1476]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1474]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1477]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1476]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2153]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2153]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2154]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2154]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1478]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1477]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1479]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1478]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1480]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1479]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1481]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1480]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2155]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2155]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2156]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2156]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1482]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1481]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1483]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1482]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1484]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1483]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1485]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1484]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2157]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2157]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2158]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2158]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1486]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1486]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1487]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1485]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1488]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1488]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1489]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1487]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2159]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2159]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2160]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2160]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1490]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1489]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1490]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1492]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1491]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1491]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1493]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1492]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2161]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2161]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2162]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2162]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1494]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1493]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1495]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1495]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1496]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1494]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1497]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1496]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1498]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1498]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1499]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1497]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2163]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2163]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2164]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2164]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1500]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1500]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1499]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1501]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1502]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1501]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1502]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1503]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2165]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2165]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2166]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2166]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1504]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1503]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1505]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1505]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1504]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1506]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1507]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1506]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2167]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2167]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2168]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2168]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1508]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1507]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1509]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1509]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1510]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1508]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1511]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1511]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2169]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2169]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2170]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2170]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1512]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1510]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1513]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1512]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1514]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1513]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1515]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1514]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2171]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2171]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2172]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2172]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1516]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1515]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1517]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1516]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1518]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1517]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1519]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1518]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2173]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2173]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2174]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2174]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1520]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1519]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1521]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1520]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1522]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1521]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1523]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1522]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2175]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2175]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2176]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2176]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1524]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1523]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1525]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1524]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1526]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1525]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1527]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1527]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1528]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1526]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2177]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2177]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2178]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2178]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1529]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1528]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1530]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1529]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1531]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1530]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1531]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1532]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2179]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2179]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2180]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2180]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1533]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1532]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1534]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1533]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1535]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1534]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1536]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1536]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1537]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1535]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2181]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2181]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2182]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2182]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1538]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1537]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1539]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1538]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1540]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1539]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1541]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1540]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2183]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2183]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2184]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2184]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1542]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1541]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1543]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1542]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1544]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1544]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2185]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2185]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2186]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2186]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1545]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1543]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1546]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1545]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1547]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1546]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1548]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1548]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1549]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1547]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2187]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2187]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2188]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2188]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1550]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1549]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1551]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1551]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1552]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1552]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1553]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1553]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1554]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1554]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1555]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1550]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1556]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1555]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1557]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1557]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1558]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1558]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1559]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1556]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2189]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2189]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2190]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2190]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1560]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1559]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1561]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1560]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1562]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1562]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2191]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2191]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2192]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2192]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1563]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1561]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1564]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1563]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1565]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1564]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1566]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1566]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1567]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1565]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2193]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2193]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2194]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2194]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1567]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1568]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1569]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1568]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1570]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1570]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2195]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2195]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2196]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2196]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1571]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1569]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1572]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1571]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1573]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1573]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2197]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2197]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2198]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2198]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1574]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1574]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1575]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1575]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2199]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2199]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2200]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2200]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1576]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1576]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1577]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1577]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2201]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2201]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2202]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2202]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1578]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1572]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1579]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1579]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1580]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1578]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1581]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1580]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1582]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1581]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2203]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2203]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2204]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2204]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1583]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1582]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1584]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1583]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1585]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1584]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1586]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1586]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1587]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1585]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2205]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2205]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2206]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2206]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1588]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1587]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1589]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1588]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1590]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1590]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2207]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2207]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2208]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2208]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1591]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1589]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1591]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1592]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1593]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1592]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2209]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2209]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2210]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2210]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1594]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1593]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1595]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1595]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1596]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1594]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1597]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1596]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1598]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1598]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1599]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1597]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2211]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2211]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2212]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2212]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1600]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1600]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1601]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1599]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1601]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2213]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2213]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2214]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2214]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1603]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1602]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1603]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1604]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1602]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1605]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1604]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2215]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2215]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2216]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2216]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1606]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1605]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1607]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1606]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1607]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1609]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1608]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1609]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1610]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1608]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2217]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2217]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2218]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2218]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1611]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1610]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1612]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1611]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1613]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1612]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1614]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1614]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1615]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1613]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2219]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2219]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2220]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2220]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1616]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1615]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1616]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1617]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1618]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1617]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1619]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1618]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2221]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2221]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2222]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2222]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1620]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1619]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1621]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1621]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1622]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1620]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1623]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1622]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1624]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1624]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1625]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1623]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2223]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2223]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2224]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2224]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1626]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1625]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1627]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1627]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1628]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1626]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1629]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1629]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2225]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2225]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2226]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2226]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1630]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1628]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1630]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1632]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1631]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1632]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2227]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2227]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2228]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2228]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1633]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1631]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1634]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1633]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1635]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1634]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1636]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1636]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1637]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1635]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2229]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2229]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2230]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2230]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1638]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1637]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1639]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1638]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1640]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1640]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2231]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2231]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2232]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2232]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1641]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1639]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1641]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1642]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1643]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1642]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1644]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1643]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2233]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2233]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2234]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2234]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1645]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1644]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1646]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1645]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1647]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1647]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2235]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2235]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2236]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2236]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1648]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1646]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1649]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1649]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1650]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1648]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1651]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1651]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2237]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2237]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2238]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2238]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1652]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1650]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1653]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1653]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1654]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1652]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1655]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1654]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1656]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1655]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2239]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2239]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2240]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2240]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1657]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1656]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1658]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1658]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1659]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1659]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1660]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1657]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1661]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1660]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1662]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1662]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1663]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1661]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2241]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2241]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2242]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2242]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1663]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1664]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1665]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1665]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1666]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1664]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1667]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1666]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1668]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1668]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1669]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1667]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2243]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2243]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2244]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2244]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1669]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1670]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1671]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1670]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1672]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1671]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1673]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1672]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1674]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1674]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1675]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1673]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2245]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2245]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2246]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2246]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1675]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1677]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1676]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1677]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1678]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1676]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1679]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1678]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2247]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2247]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2248]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2248]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1679]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1680]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1681]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1680]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1681]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1682]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1683]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1682]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2249]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2249]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2250]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2250]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1684]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1683]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1685]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1685]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1686]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1684]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1687]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1686]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1688]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1688]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1689]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1687]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2251]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2251]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2252]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2252]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1690]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1689]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1691]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1691]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1692]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1690]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1693]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1692]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1694]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1694]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1695]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1693]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2253]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2253]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2254]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2254]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1696]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1695]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1697]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1697]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1698]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1696]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1699]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1698]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1700]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1699]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2255]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2255]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2256]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2256]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1701]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1700]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1702]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1701]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1703]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1702]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1704]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1704]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1705]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1703]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2257]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2257]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2258]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2258]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1706]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1705]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1707]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1707]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1708]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1706]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1709]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1709]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2259]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2259]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2260]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2260]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1710]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1708]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1711]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1710]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1712]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1711]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1713]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1712]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2261]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2261]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2262]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2262]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1714]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1713]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1715]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1715]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1716]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1714]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1717]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1717]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2263]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2263]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2264]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2264]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1718]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1716]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1719]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1718]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1720]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1719]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1721]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1720]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2265]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2265]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2266]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2266]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1722]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1721]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1723]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1723]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1724]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1722]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1725]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1724]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1726]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1726]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1727]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1725]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2267]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2267]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2268]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2268]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1728]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1727]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1729]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1729]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1730]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1728]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1731]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1730]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1732]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1732]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1733]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1731]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2269]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2269]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2270]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2270]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1734]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1733]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1735]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1734]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1736]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1736]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2271]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2271]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2272]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2272]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1737]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1735]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1738]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1737]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1739]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1739]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2273]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2273]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2274]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2274]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1740]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1738]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1741]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1741]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1742]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1740]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1743]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1743]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2275]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2275]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2276]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2276]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1742]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1744]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1745]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1744]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1746]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1746]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2277]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2277]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2278]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2278]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1747]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1745]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1748]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1747]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1749]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1748]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1750]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1750]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1751]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1749]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2279]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2279]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2280]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2280]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1752]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1751]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1753]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1753]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1754]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1752]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1755]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1755]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2281]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2281]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2282]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2282]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1756]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1756]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1757]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1757]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2283]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2283]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2284]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2284]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1758]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1758]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1759]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1759]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2285]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2285]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2286]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2286]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1760]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1754]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1761]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1760]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1762]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1761]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1763]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1762]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2287]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2287]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2288]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2288]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1764]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1763]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1765]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1764]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1766]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1765]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1767]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1766]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2289]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2289]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2290]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2290]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1768]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1767]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1769]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1769]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1770]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1768]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1771]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1770]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1772]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1772]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1773]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1773]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1774]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1774]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1775]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1771]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2291]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2291]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2292]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2292]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1776]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1775]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1777]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1776]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1778]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1777]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1778]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2293]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2293]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2294]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2294]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1779]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1780]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1779]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1781]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1781]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1780]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1782]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1783]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1782]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2295]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2295]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2296]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2296]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1784]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1783]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1785]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1785]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1786]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1784]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1787]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1786]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1788]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1788]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1789]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1787]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2297]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2297]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2298]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2298]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1790]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1789]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1791]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1790]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1792]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1792]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2299]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2299]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2300]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2300]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1793]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1791]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1794]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1793]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1795]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1794]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1796]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1796]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1797]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1795]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2301]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2301]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2302]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2302]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1798]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1798]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1799]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1797]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1800]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1799]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2303]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2303]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2304]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2304]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1801]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1800]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1802]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1801]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1803]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1802]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1804]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1803]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2305]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2305]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2306]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2306]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1805]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1805]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1806]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1804]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1806]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2307]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2307]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2308]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2308]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1807]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1808]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1807]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1809]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1809]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2309]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2309]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2310]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2310]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1810]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1808]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1811]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1811]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1810]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1813]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1812]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1813]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2311]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2311]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2312]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2312]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1814]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1812]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1815]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1814]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1816]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1815]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1817]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1816]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2313]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2313]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2314]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2314]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1818]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1817]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1819]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1818]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1820]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1819]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1821]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1820]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2315]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2315]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2316]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2316]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1822]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1821]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1823]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1823]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1824]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1822]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1824]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1825]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1826]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1826]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1827]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1825]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1827]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1828]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2317]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2317]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2318]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2318]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1828]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1829]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1830]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1829]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1831]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1831]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2319]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2319]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2320]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2320]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1832]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1830]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1833]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1833]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1834]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1832]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1835]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1835]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2321]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2321]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2322]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2322]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1836]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1836]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1837]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1834]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1838]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1837]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2323]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2323]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2324]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2324]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1839]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1838]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1840]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1839]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1841]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1841]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2325]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2325]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2326]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2326]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1842]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1840]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1843]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1842]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1844]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1843]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1844]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2327]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2327]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2328]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2328]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1845]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1845]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1846]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1846]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2329]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2329]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2330]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2330]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1847]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1847]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1848]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1848]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2331]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2331]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2332]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2332]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1849]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1849]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1850]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1850]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2333]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2333]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2334]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2334]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1851]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1851]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1852]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1852]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2335]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2335]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2336]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2336]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1853]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1853]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1854]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1854]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1855]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2337]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2337]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2338]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2338]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1856]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1855]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1856]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1858]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1857]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1858]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2339]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2339]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2340]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2340]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1859]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1857]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1859]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1860]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1861]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1860]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2341]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2341]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2342]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2342]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1862]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1861]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1863]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1863]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1864]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1862]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1865]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1864]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1866]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1865]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2343]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2343]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2344]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2344]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1867]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1867]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1868]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1866]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1869]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1868]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2345]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2345]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2346]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2346]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1870]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1869]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1871]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1871]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1872]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1870]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1873]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1872]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1874]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1874]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1875]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1873]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1875]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1876]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2347]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2347]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2348]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2348]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1876]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1877]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1878]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1877]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1879]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1878]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1879]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2349]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2349]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2350]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2350]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1881]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1880]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1881]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1880]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1882]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1883]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1882]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2351]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2351]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2352]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2352]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1884]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1883]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1885]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1885]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1886]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1884]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1887]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1886]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1888]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1887]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2353]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2353]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2354]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2354]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1889]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1888]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1890]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1889]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1891]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1890]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1892]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1892]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1893]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1891]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2355]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2355]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2356]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2356]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1894]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1893]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1895]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1894]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1896]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1895]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1897]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1896]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2357]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2357]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2358]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2358]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1898]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1897]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1899]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1898]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1900]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1899]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1901]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1900]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2359]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2359]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2360]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2360]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1902]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1901]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1903]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1902]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1904]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1903]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1905]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1905]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1906]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1904]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2361]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2361]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2362]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2362]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1907]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1906]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1908]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1907]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1909]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1908]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1910]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1910]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1911]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1909]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2363]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2363]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2364]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2364]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1912]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1911]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1913]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1913]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1914]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1912]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1915]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1914]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1916]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1916]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1917]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1915]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2365]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2365]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2366]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2366]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1918]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1917]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1919]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1919]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1920]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1918]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1921]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1921]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2367]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2367]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2368]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2368]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1922]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1920]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1923]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1923]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1924]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1922]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1925]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1925]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2369]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2369]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2370]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2370]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1924]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1926]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1927]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1926]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1928]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1927]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1929]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1928]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2371]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2371]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2372]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2372]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1930]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1929]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1931]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1930]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1932]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1932]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2373]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2373]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2374]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2374]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1933]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1931]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1934]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1934]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1935]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1933]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1936]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1936]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2375]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2375]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2376]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2376]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1937]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1935]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1938]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1937]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1939]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1938]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1940]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1939]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2377]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2377]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2378]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2378]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1941]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1940]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1942]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1942]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1943]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1941]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1944]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1944]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2379]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2379]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2380]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2380]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1945]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1943]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1946]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1946]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1945]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1948]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1947]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1948]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2381]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2381]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2382]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2382]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1949]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1947]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1950]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1949]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1951]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1950]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1952]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1952]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1953]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1951]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2383]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2383]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2384]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2384]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1954]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1953]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1955]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1955]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1956]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1954]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1957]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1956]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1958]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1958]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1959]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1957]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2385]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2385]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2386]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2386]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1959]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1961]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1960]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1961]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1962]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1960]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1963]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1962]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2387]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2387]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2388]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2388]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1964]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1963]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1965]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1965]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1966]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1964]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1967]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1966]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1968]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1968]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1969]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1967]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2389]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2389]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2390]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2390]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1970]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1969]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1971]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1971]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1972]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1970]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1973]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1973]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2391]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2391]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2392]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2392]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 1974]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1972]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1975]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1975]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 0 1974]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1977]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1976]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1977]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2393]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2393]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2394]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2394]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 1978]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1976]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1979]]} - {:process 6 :type :fail :f :txn :value [[:append 3 1978]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1980]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1979]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1981]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1980]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2395]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2395]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2396]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2396]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 1982]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1981]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1983]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1983]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 1984]]} - {:process 6 :type :fail :f :txn :value [[:append 2 1982]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 1985]]} - {:process 0 :type :fail :f :txn :value [[:append 3 1984]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1986]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1986]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 1987]]} - {:process 6 :type :fail :f :txn :value [[:append 7 1985]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2397]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2397]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2398]]} + {:process 4 :type :fail :f :txn :value [[:append 2 1740]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2399]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2398]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 1988]]} - {:process 0 :type :fail :f :txn :value [[:append 0 1987]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1989]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1989]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 1990]]} - {:process 0 :type :fail :f :txn :value [[:append 5 1990]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1991]]} - {:process 6 :type :fail :f :txn :value [[:append 5 1988]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1991]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 1992]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 1993]]} - {:process 0 :type :fail :f :txn :value [[:append 2 1992]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 1994]]} - {:process 0 :type :fail :f :txn :value [[:append 1 1994]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 1995]]} - {:process 6 :type :fail :f :txn :value [[:append 6 1993]]} - {:process 0 :type :fail :f :txn :value [[:append 7 1995]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2399]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2401]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2400]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2401]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2402]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2400]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2403]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2402]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2404]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2403]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 1996]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 1997]]} - {:process 0 :type :fail :f :txn :value [[:append 6 1996]]} - {:process 6 :type :fail :f :txn :value [[:append 4 1997]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 1998]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 1 1998]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2405]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2404]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2405]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2406]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2407]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2407]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2000]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 1999]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2000]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2001]]} - {:process 0 :type :fail :f :txn :value [[:append 4 1999]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2002]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2001]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2408]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2406]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2409]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2408]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2410]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2409]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2410]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2411]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2003]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2002]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2004]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2004]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2005]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2003]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2006]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2005]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2007]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2006]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2412]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2411]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2413]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2412]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2414]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2413]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2414]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2415]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2008]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2007]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2009]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2009]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2010]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2008]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2011]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2010]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2012]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2012]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2013]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2011]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2416]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2415]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2417]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2416]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2418]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2417]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2418]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2419]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2014]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2013]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2015]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2014]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2016]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2016]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2420]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2419]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2421]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2420]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2422]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2421]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2422]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2423]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2017]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2015]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2018]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2017]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2019]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2019]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2424]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2423]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2425]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2424]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2426]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2425]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2426]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2427]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2020]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2018]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2021]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2021]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2022]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2020]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2023]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2022]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2023]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2428]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2427]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2429]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2428]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2430]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2429]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2430]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2431]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2025]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2024]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2025]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2026]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2024]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2027]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2027]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2028]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2026]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2432]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2431]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2433]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2432]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2434]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2433]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2434]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2435]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2029]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2028]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2030]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2029]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2031]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2031]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2436]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2435]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2437]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2436]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2438]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2437]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2438]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2439]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2032]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2030]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2033]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2032]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2034]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2034]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2440]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2439]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2441]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2440]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2442]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2441]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2442]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2443]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2035]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2033]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2036]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2035]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2037]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2036]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2038]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2038]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2039]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2037]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2444]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2443]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2445]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2444]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2446]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2445]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2447]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2447]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2448]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2448]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2449]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2446]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2040]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2039]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2041]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2041]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2042]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2040]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2042]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2043]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2043]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2044]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2045]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2044]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2045]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2450]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2449]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2451]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2451]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2452]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2452]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2453]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2450]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2454]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2453]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2455]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2454]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2046]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2047]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2046]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2048]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2047]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2049]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2048]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2050]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2050]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2051]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2049]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2456]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2455]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2457]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2456]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2458]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2457]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2459]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2459]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2460]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2458]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2051]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2052]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2053]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2053]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2054]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2054]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2460]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2461]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2462]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2461]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2463]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2462]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2464]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2463]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2055]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2052]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2055]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2056]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2057]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2056]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2465]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2464]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2466]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2465]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2467]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2466]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2468]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2467]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2058]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2057]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2059]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2058]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2060]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2060]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2469]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2468]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2469]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2470]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2471]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2470]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2061]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2059]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2062]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2061]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2063]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2062]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2063]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2472]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2471]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2473]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2472]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2474]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2473]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2474]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2475]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2065]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2064]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2065]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2066]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2064]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2067]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2066]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2476]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2475]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2477]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2476]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2478]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2477]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2478]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2479]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2068]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2067]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2069]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2068]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2070]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2070]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2480]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2480]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2481]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2479]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2482]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2481]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2071]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2069]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2072]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2071]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2073]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2073]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2483]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2482]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2484]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2483]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2485]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2484]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2486]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2485]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2074]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2072]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2075]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2074]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2076]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2075]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2077]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2076]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2487]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2486]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2488]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2487]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2489]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2488]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2490]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2489]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2078]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2077]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2079]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2079]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2080]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2078]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2081]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2080]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2082]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2082]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2083]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2081]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2491]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2490]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2491]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2492]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2493]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2493]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2083]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2084]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2085]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2084]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2085]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2086]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2087]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2086]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2494]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2492]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2495]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2494]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2496]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2495]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2497]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2496]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2088]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2087]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2089]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2089]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2090]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2088]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2091]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2091]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2498]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2497]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2499]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2498]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2500]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2499]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2501]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2500]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2092]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2090]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2093]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2092]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2094]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2094]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2502]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2501]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2503]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2502]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2504]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2503]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2504]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2505]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2095]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2093]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2096]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2095]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2097]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2096]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2098]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2098]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2099]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2097]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2506]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2505]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2507]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2506]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2507]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2508]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2509]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2508]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2100]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2099]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2101]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2101]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2102]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2100]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2103]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2102]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2104]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2104]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2105]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2103]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2509]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2510]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2511]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2510]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2512]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2511]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2513]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2512]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2106]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2105]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2107]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2106]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2108]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2108]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2514]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2513]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2515]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2514]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2516]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2515]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2517]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2516]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2107]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2110]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2109]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2110]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2111]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2109]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2112]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2112]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2518]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2517]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2519]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2518]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2520]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2519]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2521]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2520]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2113]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2111]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2113]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2114]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2115]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2114]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2522]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2521]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2523]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2522]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2524]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2523]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2525]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2524]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2116]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2115]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2117]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2117]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2116]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2118]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2119]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2118]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2526]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2525]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2527]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2526]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2528]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2527]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2528]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2529]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2120]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2119]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2120]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2122]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2121]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2122]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2530]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2529]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2531]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2530]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2532]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2531]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2533]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2532]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2123]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2121]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2124]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2123]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2125]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2125]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2534]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2533]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2535]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2534]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2536]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2535]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2536]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2537]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2126]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2124]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2127]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2126]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2128]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2128]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2538]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2537]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2539]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2538]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2540]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2539]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2541]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2540]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2129]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2129]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2130]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2127]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2131]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2130]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2131]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2132]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2542]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2541]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2543]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2542]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2544]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2543]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2545]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2544]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2132]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2133]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2134]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2133]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2135]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2134]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2136]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2136]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2135]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2546]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2545]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2547]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2546]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2548]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2547]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2549]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2548]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2137]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2137]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2138]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2138]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2550]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2549]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2551]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2550]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2552]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2551]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2553]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2552]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2139]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2139]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2140]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2140]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2554]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2553]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2555]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2554]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2556]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2555]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2556]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2557]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2141]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2141]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2142]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2142]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2558]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2557]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2559]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2558]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2560]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2559]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2560]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2561]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2143]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2143]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2144]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2144]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2562]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2561]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2563]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2562]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2564]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2563]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2565]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2564]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2565]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2566]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2145]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2145]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2146]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2146]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2567]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2566]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2568]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2567]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2569]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2568]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2570]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2569]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2147]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2147]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2148]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2149]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2148]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2571]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2570]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2572]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2571]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2573]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2572]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2574]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2573]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2150]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2149]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2151]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2151]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2152]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2150]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2153]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2152]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2153]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2575]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2574]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2576]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2575]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2577]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2576]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2578]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2577]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2154]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2155]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2154]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2156]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2156]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2157]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2155]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2158]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2157]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2159]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2158]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2579]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2578]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2579]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2580]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2581]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2580]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2582]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2581]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2160]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2159]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2161]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2160]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2162]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2161]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2163]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2163]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2164]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2162]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2583]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2582]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2584]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2583]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2585]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2585]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2165]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2164]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2165]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2166]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2167]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2166]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2168]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2167]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2586]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2584]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2587]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2586]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2588]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2587]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2589]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2588]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2169]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2168]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2169]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2170]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2171]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2170]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2590]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2589]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2591]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2590]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2592]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2591]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2593]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2592]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2172]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2171]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2173]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2172]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2174]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2173]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2174]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2594]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2593]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2595]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2594]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2596]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2595]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2597]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2596]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2175]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2175]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2176]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2177]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2176]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2598]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2597]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2599]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2598]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2600]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2599]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2601]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2600]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2178]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2177]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2179]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2179]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2180]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2178]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2181]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2181]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2602]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2601]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2603]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2602]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2604]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2603]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2604]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2605]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2180]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2182]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2183]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2182]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2184]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2184]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2185]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2183]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2186]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2186]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2606]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2605]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2607]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2606]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2608]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2607]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2609]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2608]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2187]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2185]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2188]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2187]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2189]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2189]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2610]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2609]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2611]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2610]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2612]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2611]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2612]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2613]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2190]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2188]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2191]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2191]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2192]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2190]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2193]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2193]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2614]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2613]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2615]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2614]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2616]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2615]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2616]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2617]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2194]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2192]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2195]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2195]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2196]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2194]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2197]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2196]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2197]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2618]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2617]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2619]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2618]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2620]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2619]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2620]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2621]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2621]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2622]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2622]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2199]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2198]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2199]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2200]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2198]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2201]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2200]]} - {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2623]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2624]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2623]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2625]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2624]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2626]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2625]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2202]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2201]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2203]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2203]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2204]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2202]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2205]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2204]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2206]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2206]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2207]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2205]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2627]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2626]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2628]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2627]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2629]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2628]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2630]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2629]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2208]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2207]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2209]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2208]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2210]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2210]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2631]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2630]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2632]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2631]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2633]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2632]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2634]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2633]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2211]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2209]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2212]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2211]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2213]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2212]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2214]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2213]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2635]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2634]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2636]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2635]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2637]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2636]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2638]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2637]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2215]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2214]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2216]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2215]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2217]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2216]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2218]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2217]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2639]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2638]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2639]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2640]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2641]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2640]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2642]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2641]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2219]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2218]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2219]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2220]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2220]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2643]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2642]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2644]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2643]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2645]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2644]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2646]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2645]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2221]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2221]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2222]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2223]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2222]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2647]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2646]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2648]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2647]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2649]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2648]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2650]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2649]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2223]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2224]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2225]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2224]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2226]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2225]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2227]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2227]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2651]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2650]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2652]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2651]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2653]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2652]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2654]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2654]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2655]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2653]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2228]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2228]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2229]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2229]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2656]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2655]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2657]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2656]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2658]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2657]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2659]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2658]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2230]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2230]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2231]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2231]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2660]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2659]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2661]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2660]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2662]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2661]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2663]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2662]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2232]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2232]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2233]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2226]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2234]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2234]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2235]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2235]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2236]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2233]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2664]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2663]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2665]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2664]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2666]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2665]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2666]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2667]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2237]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2236]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2238]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2238]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2239]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2237]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2240]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2239]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2241]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2241]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2242]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2240]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2668]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2667]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2669]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2668]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2670]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2669]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2671]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2670]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2243]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2242]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2244]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2244]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2245]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2243]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2246]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2245]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2247]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2247]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2248]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2246]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2672]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2671]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2673]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2672]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2674]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2673]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2674]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2675]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2249]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2248]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2250]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2249]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2251]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2250]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2252]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2251]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2676]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2675]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2677]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2676]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2678]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2677]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2678]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2253]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2252]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2253]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2254]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2254]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2679]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2680]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2679]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2681]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2680]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2682]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2681]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2255]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2256]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2255]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2257]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2256]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2257]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2683]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2682]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2684]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2683]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2685]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2684]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2686]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2685]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2259]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2258]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2259]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2260]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2258]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2261]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2260]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2687]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2686]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2687]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2688]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2689]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2688]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2690]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2689]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2262]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2261]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2263]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2263]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2264]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2262]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2265]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2264]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2266]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2266]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2267]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2265]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2690]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2691]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2692]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2691]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2693]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2692]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2694]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2693]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2268]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2267]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2269]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2268]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2270]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2269]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2271]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2270]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2695]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2694]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2696]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2695]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2697]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2696]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2698]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2697]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2272]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2271]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2273]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2273]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2274]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2272]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2275]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2274]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2276]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2276]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2277]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2275]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2699]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2698]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2700]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2699]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2701]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2700]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2702]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2701]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2278]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2277]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2279]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2278]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2280]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2279]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2280]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2703]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2702]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2704]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2703]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2705]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2704]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2706]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2705]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2281]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2282]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2282]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2283]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2283]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2284]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2281]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2284]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2285]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2285]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2286]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2287]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2286]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2707]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2706]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2708]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2707]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2709]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2708]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2710]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2709]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2288]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2287]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2289]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2288]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2290]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2290]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2711]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2710]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2712]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2711]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2713]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2712]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2714]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2713]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2291]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2289]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2291]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2292]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2293]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2292]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2294]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2293]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2715]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2714]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2716]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2715]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2717]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2716]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2718]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2717]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2295]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2295]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2296]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2294]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2297]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2296]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2719]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2718]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2720]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2719]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2721]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2720]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2722]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2721]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2298]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2297]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2299]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2298]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2300]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2299]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2301]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2300]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2723]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2722]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2724]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2723]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2725]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2724]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2726]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2725]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2302]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2301]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2303]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2303]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2304]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2302]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2305]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2304]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2306]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2306]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2307]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2305]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2727]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2726]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2728]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2727]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2729]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2728]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2730]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2729]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2307]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2308]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2309]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2308]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2310]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2309]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2311]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2310]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2731]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2730]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2732]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2731]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2733]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2732]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2734]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2733]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2312]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2311]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2313]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2313]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2314]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2312]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2315]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2314]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2315]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2735]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2735]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2736]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2734]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2736]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2737]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2316]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2316]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2317]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2318]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2318]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2319]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2317]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2738]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2737]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2739]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2738]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2740]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2739]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2741]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2741]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2742]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2740]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2320]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2319]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2321]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2321]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2322]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2322]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2323]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2323]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2324]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2320]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2325]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2325]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2743]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2743]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2744]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2742]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2745]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2745]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2746]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2744]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2326]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2324]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2327]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2326]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2328]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2328]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2747]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2747]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2748]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2746]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2749]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2749]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2750]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2748]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2329]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2327]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2330]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2329]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2331]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2330]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2332]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2332]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2333]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2331]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2751]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2750]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2752]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2751]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2753]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2752]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2754]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2753]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2334]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2333]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2335]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2335]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2334]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2336]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2337]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2336]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2338]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2337]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2754]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2755]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2756]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2755]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2757]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2756]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2758]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2757]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2338]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2339]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2340]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2339]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2341]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2340]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2342]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2341]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2342]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2343]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2758]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2759]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2760]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2759]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2761]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2760]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2762]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2761]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2343]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2344]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2345]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2344]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2345]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2346]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2347]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2346]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2763]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2762]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2764]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2763]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2765]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2764]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2766]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2765]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2348]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2347]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2349]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2348]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2350]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2350]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2766]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2767]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2768]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2767]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2769]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2768]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2770]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2769]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2770]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2351]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2349]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2352]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2352]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2353]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2351]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2354]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2353]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2355]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2355]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2356]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2354]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2771]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2772]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2771]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2773]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2772]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2774]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2773]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2357]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2356]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2358]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2357]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2359]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2358]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2360]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2359]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2774]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2775]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2776]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2775]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2777]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2776]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2778]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2777]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2361]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2361]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2362]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2360]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2362]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2778]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2779]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2780]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2779]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2781]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2780]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2782]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2781]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2364]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2363]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2364]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2365]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2365]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2783]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2782]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2784]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2783]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2785]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2784]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2786]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2785]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2786]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2366]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2366]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2367]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2363]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2368]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2367]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2787]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2788]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2787]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2789]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2788]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2790]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2789]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2369]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2369]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2370]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2368]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2371]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2370]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2790]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2791]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2792]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2791]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2792]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2793]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2794]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2793]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2795]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2794]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2372]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2371]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2373]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2373]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2374]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2372]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2375]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2374]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2375]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2796]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2795]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2797]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2796]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2798]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2797]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2799]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2798]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2377]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2376]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2377]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2378]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2376]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2379]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2378]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2800]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2799]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2801]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2800]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2802]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2801]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2803]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2802]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2380]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2379]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2381]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2381]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2382]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2380]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2383]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2382]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2384]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2383]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2384]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2804]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2803]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2805]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2804]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2806]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2805]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2807]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2806]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2385]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2386]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2385]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2387]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2387]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2388]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2386]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2389]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2388]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2389]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2808]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2807]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2809]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2808]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2810]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2809]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2811]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2810]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2391]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2390]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2391]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2392]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2392]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2812]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2811]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2813]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2812]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2814]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2813]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2815]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2814]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2393]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2390]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2393]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2394]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2395]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2394]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2816]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2815]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2817]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2816]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2818]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2817]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2819]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2818]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2396]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2395]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2397]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2396]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2398]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2397]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2398]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2820]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2819]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2821]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2820]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2822]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2821]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2823]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2822]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2399]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2400]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2399]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2401]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2400]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2402]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2402]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2403]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2401]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2824]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2823]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2825]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2824]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2826]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2825]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2827]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2826]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2404]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2403]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2405]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2404]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2406]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2406]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2828]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2827]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2829]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2828]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2830]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2829]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2831]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2830]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2407]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2405]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2408]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2407]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2409]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2408]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2410]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2410]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2409]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2832]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2831]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2833]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2832]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2834]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2833]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2835]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2834]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2411]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2412]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2411]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2413]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2412]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2414]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2413]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2836]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2835]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2837]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2836]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2838]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2837]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2839]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2838]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2415]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2415]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2416]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2414]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2416]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2840]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2839]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2841]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2840]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2842]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2841]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2843]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2842]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2417]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2418]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2417]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2419]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2418]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2420]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2420]]} - {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2844]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2843]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2845]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2844]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2846]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2845]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2847]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2846]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2421]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2421]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2422]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2422]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2847]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2848]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2848]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2850]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2849]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2850]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2423]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2423]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2424]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2424]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2851]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2849]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2852]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2851]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2853]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2852]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2854]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2853]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2854]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2425]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2425]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2426]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2426]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2855]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2856]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2855]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2857]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2856]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2858]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2857]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2427]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2427]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2428]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2428]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2859]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2858]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2859]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2860]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2861]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2860]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2429]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2429]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2430]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2430]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2862]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2861]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2863]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2863]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2864]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2862]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2865]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2864]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2866]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2865]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2431]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2431]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2432]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2432]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2867]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2866]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2868]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2867]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2869]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2868]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2870]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2869]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2433]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2419]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2433]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2434]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2435]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2434]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2436]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2436]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2437]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2435]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2870]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2871]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2872]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2871]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2873]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2872]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2874]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2873]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2874]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2438]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2438]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2439]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2437]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2440]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2439]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2875]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2876]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2875]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2877]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2876]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2878]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2877]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2878]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2441]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2440]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2442]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2441]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2442]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2443]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2444]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2443]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2445]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2444]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2879]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2880]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2879]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2881]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2880]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2882]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2881]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2446]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2446]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2447]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2445]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2448]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2447]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2883]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2882]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2884]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2883]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2885]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2884]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2886]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2885]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2449]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2448]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2450]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2449]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2451]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2450]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2452]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2451]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2887]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2886]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2888]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2887]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2889]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2888]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2890]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2889]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2453]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2452]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2454]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2453]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2455]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2455]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2891]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2890]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2892]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2891]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2893]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2892]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2894]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2893]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2456]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2454]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2457]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2456]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2458]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2458]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2894]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2895]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2896]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2895]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2897]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2896]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2898]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2897]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2459]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2457]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2460]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2459]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2461]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2460]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2462]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2462]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2461]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2899]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2898]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2900]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2899]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2901]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2900]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2902]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2901]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2463]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2464]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2463]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2465]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2464]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2466]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2465]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2902]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2903]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2904]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2903]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2905]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2904]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2906]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2905]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2906]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2467]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2466]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2468]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2467]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2469]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2468]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2470]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2469]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2907]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2908]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2907]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2909]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2908]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2910]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2909]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2471]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2470]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2471]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2473]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2472]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2473]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2910]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2911]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2912]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2911]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2913]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2912]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2914]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2913]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2474]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2472]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2475]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2475]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2474]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2476]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2476]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2477]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2914]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2915]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2916]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2915]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2917]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2916]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2918]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2917]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2478]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2477]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2479]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2478]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2480]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2480]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2919]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2918]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2920]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2919]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2921]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2920]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2922]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2921]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2481]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2479]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2482]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2481]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2483]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2483]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2922]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2923]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2924]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2923]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2925]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2924]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2926]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2925]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2926]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2484]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2482]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2485]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2484]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2486]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2486]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2927]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2928]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2927]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2929]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2928]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2930]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2929]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2930]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2487]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2485]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2487]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2488]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2489]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2488]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2490]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2489]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2931]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2932]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2931]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2933]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2932]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2934]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2933]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2491]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2490]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2492]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2491]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2493]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2493]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2934]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2935]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2936]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2935]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2937]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2936]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2938]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2937]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2494]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2492]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2495]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2494]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2496]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2495]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2497]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2496]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2938]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2939]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2940]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2939]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2941]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2940]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2942]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2941]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2498]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2497]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2499]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2498]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2500]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2500]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2942]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2943]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2944]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2943]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2945]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2944]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2946]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2945]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2946]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2501]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2499]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2501]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2502]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2503]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2502]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2947]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2948]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2947]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2949]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2948]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2950]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2949]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2950]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2504]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2504]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2505]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2503]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2506]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2505]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2951]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2952]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2951]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2953]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2952]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2954]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2953]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2506]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2507]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2508]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2507]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2509]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2508]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2509]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2955]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2954]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2956]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2955]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2957]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2956]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2958]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2957]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2511]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2510]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2511]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2512]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2510]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2513]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2512]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2958]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2959]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2960]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2959]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2961]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2960]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2962]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2961]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2514]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2513]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2515]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2515]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2516]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2514]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2517]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2516]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2517]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2963]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2963]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2964]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2962]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2964]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2519]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2518]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2519]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2520]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2520]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2965]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2966]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2966]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2967]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2965]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2968]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2967]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2521]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2518]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2522]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2521]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2522]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2523]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2524]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2523]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2525]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2524]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2969]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2968]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2970]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2969]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2971]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2970]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2972]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2971]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2526]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2525]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2526]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2528]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2527]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2528]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2973]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2972]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2974]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2973]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2975]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2974]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2976]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2975]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2529]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2527]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2530]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2529]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2531]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2530]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2532]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2532]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2533]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2531]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2976]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 2977]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2978]]} + {:process 6 :type :fail :f :txn :value [[:append 5 2977]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2979]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2978]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2980]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2979]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2980]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2534]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2533]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2535]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2534]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2536]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2536]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 2981]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 2982]]} + {:process 6 :type :fail :f :txn :value [[:append 4 2981]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2983]]} + {:process 4 :type :fail :f :txn :value [[:append 2 2982]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2984]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2983]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2537]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2535]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2537]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2539]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2538]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2539]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2984]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 2985]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 2986]]} + {:process 6 :type :fail :f :txn :value [[:append 7 2985]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2987]]} + {:process 4 :type :fail :f :txn :value [[:append 7 2986]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2988]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2987]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2988]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 2989]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2540]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2540]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2541]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2541]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 2990]]} + {:process 4 :type :fail :f :txn :value [[:append 4 2989]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 2991]]} + {:process 6 :type :fail :f :txn :value [[:append 6 2990]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 2992]]} + {:process 4 :type :fail :f :txn :value [[:append 3 2991]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 2993]]} + {:process 6 :type :fail :f :txn :value [[:append 3 2992]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2542]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2538]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2543]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2543]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2544]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2542]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2545]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2545]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 2994]]} + {:process 4 :type :fail :f :txn :value [[:append 1 2993]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 2995]]} + {:process 6 :type :fail :f :txn :value [[:append 1 2994]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 2996]]} + {:process 4 :type :fail :f :txn :value [[:append 0 2995]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 2997]]} + {:process 6 :type :fail :f :txn :value [[:append 2 2996]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2546]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2544]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2547]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2547]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2548]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2546]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2549]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2549]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 2998]]} + {:process 4 :type :fail :f :txn :value [[:append 6 2997]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 2999]]} + {:process 6 :type :fail :f :txn :value [[:append 0 2998]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3000]]} + {:process 4 :type :fail :f :txn :value [[:append 5 2999]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3001]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3000]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2550]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2550]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2551]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2551]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3002]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3001]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3003]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3002]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3004]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3003]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3005]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3004]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2552]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2552]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2553]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2553]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3006]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3005]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3007]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3006]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3008]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3007]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3009]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3008]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2554]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2548]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2555]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2555]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2554]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2556]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2556]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2557]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3010]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3009]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3011]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3010]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3012]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3011]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3013]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3012]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2558]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2557]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2559]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2558]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2560]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2560]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3014]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3013]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3015]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3014]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3016]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3015]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3017]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3016]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2561]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2561]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2562]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2562]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3018]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3017]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3019]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3018]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3019]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3020]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3021]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3020]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3021]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2563]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2559]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2564]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2563]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2565]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2564]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2566]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2565]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3022]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3023]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3022]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3024]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3023]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3025]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3024]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3026]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3025]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2567]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2566]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2568]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2567]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2569]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2569]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3027]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3026]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3028]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3027]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3029]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3028]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3030]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3029]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2570]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2568]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2571]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2571]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2572]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2570]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2573]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2572]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2574]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2573]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3031]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3030]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3032]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3031]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3033]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3032]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3034]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3033]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2575]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2574]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2575]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2576]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2577]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2576]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3034]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3035]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3036]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3035]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3037]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3036]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3038]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3037]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3038]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2578]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2577]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2579]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2578]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2579]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2580]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2581]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2580]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2582]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2581]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2582]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2583]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3039]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3040]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3039]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3041]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3040]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3042]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3041]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3042]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2584]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2583]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2584]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2586]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2585]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2586]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2585]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3043]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3044]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3043]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3045]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3044]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3046]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3045]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2587]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3046]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2588]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2587]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2589]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2588]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2590]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2589]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2591]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2590]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2591]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2592]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3047]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3048]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3047]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3049]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3048]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3050]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3049]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3050]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2593]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2592]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2594]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2593]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2595]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2594]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2596]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2595]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3051]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3052]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3051]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3053]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3052]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3054]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3053]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2597]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2596]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2598]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2597]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2599]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2599]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3054]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3055]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3056]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3055]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3056]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3058]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3058]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3059]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3057]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3059]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3060]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3057]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3060]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2600]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2598]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2601]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2601]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2602]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2600]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2603]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2602]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2604]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2604]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2605]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2603]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3061]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3062]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3061]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3063]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3062]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3064]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3063]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3064]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2606]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2605]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2607]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2606]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2608]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2608]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3065]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3066]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3065]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3067]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3066]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3068]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3067]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2609]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2607]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2609]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2611]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2610]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2611]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2610]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2612]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3069]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3069]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3070]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3068]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3070]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3071]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2612]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2613]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2614]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2613]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2615]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2615]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3072]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3071]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3073]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3072]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3074]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3073]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3075]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3074]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2616]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2614]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2617]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2617]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2618]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2616]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2619]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2619]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3076]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3075]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3077]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3076]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3078]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3077]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3079]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3078]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2620]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2618]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2621]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2620]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2622]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2621]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2623]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2622]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3080]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3079]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3081]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3080]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3082]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3081]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3083]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3082]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2624]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2623]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2625]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2625]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2624]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2627]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2626]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2627]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2626]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2628]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2628]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2629]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2629]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2630]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2630]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2631]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3084]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3083]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3085]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3084]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3086]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3085]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3087]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3086]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2631]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2632]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2633]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2632]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2634]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2633]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2635]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2635]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3088]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3087]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3089]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3088]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3090]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3089]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3091]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3090]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2636]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2634]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2637]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2636]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2638]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2638]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3092]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3091]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3093]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3092]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3094]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3093]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3095]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3094]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2637]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2640]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2639]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2640]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2639]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2642]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2641]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2642]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3096]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3095]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3097]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3096]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3098]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3097]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3099]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3098]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2643]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2641]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2644]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2643]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2645]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2645]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3100]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3099]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3101]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3100]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3102]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3101]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3103]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3102]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2646]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2644]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2647]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2646]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2648]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2647]]} - {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2649]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2649]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2650]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2648]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3104]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3103]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3105]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3104]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3106]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3105]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3107]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3106]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2651]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2650]]} - {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2652]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2651]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2653]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2652]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2654]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2654]]} - {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2655]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2653]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3108]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3107]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3109]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3108]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3110]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3109]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3111]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3110]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2655]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2657]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2656]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2657]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2658]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2656]]} - {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 6 2659]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2658]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3112]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3111]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3113]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3112]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3114]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3113]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3115]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3114]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2660]]} - {:process 0 :type :fail :f :txn :value [[:append 6 2659]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2661]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2661]]} - {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 3 2662]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2660]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2663]]} - {:process 0 :type :fail :f :txn :value [[:append 3 2662]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2664]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2664]]} - {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 0 2665]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2663]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3116]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3115]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3117]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3116]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3118]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3117]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3119]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3118]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2666]]} - {:process 0 :type :fail :f :txn :value [[:append 0 2665]]} - {:process 0 :type :invoke :f :txn :value [[:append 7 2667]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2666]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2668]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2668]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3120]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3119]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3121]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3120]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3122]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3121]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3123]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3122]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2669]]} - {:process 0 :type :fail :f :txn :value [[:append 7 2667]]} - {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 5 2670]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2669]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2671]]} - {:process 0 :type :fail :f :txn :value [[:append 5 2670]]} - {:process 0 :type :invoke :f :txn :value [[:append 4 2672]]} - {:process 0 :type :fail :f :txn :value [[:append 4 2672]]} - {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 0 :type :invoke :f :txn :value [[:append 2 2673]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2671]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3124]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3123]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3125]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3124]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3126]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3125]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3127]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3126]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2674]]} - {:process 0 :type :fail :f :txn :value [[:append 2 2673]]} - {:process 0 :type :invoke :f :txn :value [[:append 1 2675]]} - {:process 0 :type :fail :f :txn :value [[:append 1 2675]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2674]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2676]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2676]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3128]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3127]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3129]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3128]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3130]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3129]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3131]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3130]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2677]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2677]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2678]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2678]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3132]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3131]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3133]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3132]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3133]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3134]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3135]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3134]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2679]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2679]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2680]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2680]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3135]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3136]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3137]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3136]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3138]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3137]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3139]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3138]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2681]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2681]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2682]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2682]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3140]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3139]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3141]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3140]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3142]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3141]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3143]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3142]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2683]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2683]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2684]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2684]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3144]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3143]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3145]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3144]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3146]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3145]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3147]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3146]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2685]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2685]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2686]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2686]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3148]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3147]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3149]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3148]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3150]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3149]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3151]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3150]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2687]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2687]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2688]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2688]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3152]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3151]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3153]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3152]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3154]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3153]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3155]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3154]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2689]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2689]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2690]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2690]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3156]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3155]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3157]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3156]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3158]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3157]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3159]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3158]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2691]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2691]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2692]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2692]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3160]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3159]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3161]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3160]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3162]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3161]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3163]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3162]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2693]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2693]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2694]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2694]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3164]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3163]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3165]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3164]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3166]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3165]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3167]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3166]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2695]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2695]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2696]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2696]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3168]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3167]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3169]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3168]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3170]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3169]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3171]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3170]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2697]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2697]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2698]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2698]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3172]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3171]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3173]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3172]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3174]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3173]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3175]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3174]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2699]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2699]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2700]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2700]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3176]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3175]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3177]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3176]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3178]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3177]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3179]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3178]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2701]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2701]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2702]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2702]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3180]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3179]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3181]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3180]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3182]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3181]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3183]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3182]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2703]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2703]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2704]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2704]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3184]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3183]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3185]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3184]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3186]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3185]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3187]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3186]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2705]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2705]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2706]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2706]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3188]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3187]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3189]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3188]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3190]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3189]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3191]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3191]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3192]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3190]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2707]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2707]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2708]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2708]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3193]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3192]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3194]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3193]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3195]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3194]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3196]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3195]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2709]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2709]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2710]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2710]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3196]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3197]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3198]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3197]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3199]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3198]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3200]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3199]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3200]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2711]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2711]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2712]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2712]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3201]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3202]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3201]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3203]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3202]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3204]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3203]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3204]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2713]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2713]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2714]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2714]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3205]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3206]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3205]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3207]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3206]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3208]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3207]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3208]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2715]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2715]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2716]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2716]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3209]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3210]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3209]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3211]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3210]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3212]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3211]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2717]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2717]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2718]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2718]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3212]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3213]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3214]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3213]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3215]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3214]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3216]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3215]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3216]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2719]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2719]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2720]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2720]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3217]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3218]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3218]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3219]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3217]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3220]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3219]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3221]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3220]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3221]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3222]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2721]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2721]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2722]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2722]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3223]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3222]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3224]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3223]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3225]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3224]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3226]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3225]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3226]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2723]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2723]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2724]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2724]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3227]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3228]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3227]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3229]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3228]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3230]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3229]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3231]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3230]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2725]]} - {:process 2 :type :fail :f :txn :value [[:append 6 475]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 2726]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2725]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2727]]} - {:process 2 :type :fail :f :txn :value [[:append 1 2726]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 2728]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2727]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3232]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3231]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3233]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3232]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3234]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3233]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3235]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3234]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2729]]} - {:process 2 :type :fail :f :txn :value [[:append 3 2728]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 2730]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2729]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2731]]} - {:process 2 :type :fail :f :txn :value [[:append 2 2730]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 2732]]} - {:process 2 :type :fail :f :txn :value [[:append 4 2732]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 2733]]} - {:process 2 :type :fail :f :txn :value [[:append 7 2733]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 2734]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2731]]} - {:process 2 :type :fail :f :txn :value [[:append 1 2734]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 2735]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3236]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3235]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3237]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3236]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3238]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3237]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3239]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3238]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:append 0 2735]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 2736]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2737]]} - {:process 2 :type :fail :f :txn :value [[:append 2 2736]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 2738]]} - {:process 2 :type :fail :f :txn :value [[:append 5 2738]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2737]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2740]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2740]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3240]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3239]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3241]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3240]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3242]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3241]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3243]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3242]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2741]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 2739]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2741]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2742]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2742]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3244]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3243]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3245]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3244]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3246]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3245]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3247]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3246]]} {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2743]]} - {:process 2 :type :fail :f :txn :value [[:append 7 2739]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 2744]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2743]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2745]]} - {:process 2 :type :fail :f :txn :value [[:append 6 2744]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 2746]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2745]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3248]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3247]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3249]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3248]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3250]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3250]]} {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3249]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3251]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3251]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3252]]} {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2747]]} - {:process 2 :type :fail :f :txn :value [[:append 0 2746]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 2748]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2747]]} - {:process 2 :type :fail :f :txn :value [[:append 3 2748]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2749]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 2750]]} - {:process 2 :type :fail :f :txn :value [[:append 5 2750]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 2751]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2749]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3253]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3252]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3254]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3253]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3255]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3254]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3256]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3255]]} {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2752]]} - {:process 2 :type :fail :f :txn :value [[:append 4 2751]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 2753]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2752]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2754]]} - {:process 2 :type :fail :f :txn :value [[:append 6 2753]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2754]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3256]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3257]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3258]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3257]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3259]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3258]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3260]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3259]]} {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 2755]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3260]]} {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 0 2756]]} - {:process 2 :type :fail :f :txn :value [[:append 1 2755]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 2757]]} - {:process 6 :type :fail :f :txn :value [[:append 0 2756]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2758]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2758]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3261]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3262]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3261]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3263]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3262]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3264]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3263]]} {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 3 2759]]} - {:process 2 :type :fail :f :txn :value [[:append 3 2757]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 2760]]} - {:process 6 :type :fail :f :txn :value [[:append 3 2759]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2761]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2761]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3265]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3264]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3266]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3265]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3267]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3266]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3268]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3267]]} {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:append 2 2760]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 2762]]} - {:process 2 :type :fail :f :txn :value [[:append 4 2762]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 2763]]} - {:process 2 :type :fail :f :txn :value [[:append 7 2763]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 2764]]} - {:process 2 :type :fail :f :txn :value [[:append 1 2764]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 2765]]} - {:process 2 :type :fail :f :txn :value [[:append 0 2765]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 2766]]} - {:process 2 :type :fail :f :txn :value [[:append 2 2766]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 2767]]} - {:process 2 :type :fail :f :txn :value [[:append 5 2767]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 2768]]} - {:process 2 :type :fail :f :txn :value [[:append 7 2768]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 2769]]} - {:process 2 :type :fail :f :txn :value [[:append 6 2769]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 2770]]} - {:process 2 :type :fail :f :txn :value [[:append 0 2770]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 2771]]} - {:process 2 :type :fail :f :txn :value [[:append 3 2771]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 2772]]} - {:process 2 :type :fail :f :txn :value [[:append 5 2772]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 2773]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3268]]} {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 2 2774]]} - {:process 2 :type :fail :f :txn :value [[:append 4 2773]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 2775]]} - {:process 6 :type :fail :f :txn :value [[:append 2 2774]]} - {:process 2 :type :fail :f :txn :value [[:append 6 2775]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 2776]]} - {:process 2 :type :fail :f :txn :value [[:append 1 2776]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 2777]]} - {:process 2 :type :fail :f :txn :value [[:append 3 2777]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 2778]]} - {:process 2 :type :fail :f :txn :value [[:append 2 2778]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 2779]]} - {:process 2 :type :fail :f :txn :value [[:append 4 2779]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 2780]]} - {:process 2 :type :fail :f :txn :value [[:append 7 2780]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 2781]]} - {:process 6 :type :invoke :f :txn :value [[:append 7 2782]]} - {:process 2 :type :fail :f :txn :value [[:append 1 2781]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 2783]]} - {:process 2 :type :fail :f :txn :value [[:append 0 2783]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 2784]]} - {:process 6 :type :fail :f :txn :value [[:append 7 2782]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3269]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3270]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3269]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3271]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3270]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3272]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3271]]} {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 5 2785]]} - {:process 2 :type :fail :f :txn :value [[:append 2 2784]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 2786]]} - {:process 6 :type :fail :f :txn :value [[:append 5 2785]]} - {:process 6 :type :invoke :f :txn :value [[:append 6 2787]]} - {:process 2 :type :fail :f :txn :value [[:append 5 2786]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 2788]]} - {:process 6 :type :fail :f :txn :value [[:append 6 2787]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3273]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3272]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3274]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3273]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3275]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3274]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3276]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3275]]} {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 6 :type :invoke :f :txn :value [[:append 4 2789]]} - {:process 2 :type :fail :f :txn :value [[:append 7 2788]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 2790]]} - {:process 6 :type :fail :f :txn :value [[:append 4 2789]]} - {:process 6 :type :invoke :f :txn :value [[:append 1 2791]]} - {:process 2 :type :fail :f :txn :value [[:append 6 2790]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 6 :type :fail :f :txn :value [[:append 1 2791]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 2792]]} - {:process 2 :type :fail :f :txn :value [[:append 0 2792]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 2793]]} - {:process 2 :type :fail :f :txn :value [[:append 3 2793]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 2794]]} - {:process 2 :type :fail :f :txn :value [[:append 5 2794]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 2795]]} - {:process 2 :type :fail :f :txn :value [[:append 4 2795]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 2796]]} - {:process 2 :type :fail :f :txn :value [[:append 6 2796]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 2797]]} - {:process 2 :type :fail :f :txn :value [[:append 1 2797]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 2798]]} - {:process 2 :type :fail :f :txn :value [[:append 3 2798]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 2799]]} - {:process 2 :type :fail :f :txn :value [[:append 2 2799]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 2800]]} - {:process 2 :type :fail :f :txn :value [[:append 4 2800]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 2801]]} - {:process 2 :type :fail :f :txn :value [[:append 7 2801]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 2802]]} - {:process 2 :type :fail :f :txn :value [[:append 1 2802]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 2803]]} - {:process 2 :type :fail :f :txn :value [[:append 0 2803]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 2804]]} - {:process 2 :type :fail :f :txn :value [[:append 2 2804]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 2805]]} - {:process 2 :type :fail :f :txn :value [[:append 5 2805]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 2806]]} - {:process 2 :type :fail :f :txn :value [[:append 7 2806]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 2807]]} - {:process 2 :type :fail :f :txn :value [[:append 6 2807]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 2808]]} - {:process 2 :type :fail :f :txn :value [[:append 0 2808]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 2809]]} - {:process 2 :type :fail :f :txn :value [[:append 3 2809]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 2810]]} - {:process 2 :type :fail :f :txn :value [[:append 5 2810]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 2811]]} - {:process 2 :type :fail :f :txn :value [[:append 4 2811]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 2812]]} - {:process 2 :type :fail :f :txn :value [[:append 6 2812]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 2813]]} - {:process 2 :type :fail :f :txn :value [[:append 1 2813]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 2814]]} - {:process 2 :type :fail :f :txn :value [[:append 3 2814]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 2815]]} - {:process 2 :type :fail :f :txn :value [[:append 2 2815]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 2816]]} - {:process 2 :type :fail :f :txn :value [[:append 4 2816]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 2817]]} - {:process 2 :type :fail :f :txn :value [[:append 7 2817]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 2818]]} - {:process 2 :type :fail :f :txn :value [[:append 1 2818]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 2819]]} - {:process 2 :type :fail :f :txn :value [[:append 0 2819]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 2820]]} - {:process 2 :type :fail :f :txn :value [[:append 2 2820]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 2821]]} - {:process 2 :type :fail :f :txn :value [[:append 5 2821]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 2822]]} - {:process 2 :type :fail :f :txn :value [[:append 7 2822]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 2823]]} - {:process 2 :type :fail :f :txn :value [[:append 6 2823]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 2824]]} - {:process 2 :type :fail :f :txn :value [[:append 0 2824]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 2825]]} - {:process 2 :type :fail :f :txn :value [[:append 3 2825]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 2826]]} - {:process 2 :type :fail :f :txn :value [[:append 5 2826]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 2827]]} - {:process 2 :type :fail :f :txn :value [[:append 4 2827]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 2828]]} - {:process 2 :type :fail :f :txn :value [[:append 6 2828]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 2829]]} - {:process 2 :type :fail :f :txn :value [[:append 1 2829]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 2830]]} - {:process 2 :type :fail :f :txn :value [[:append 3 2830]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 2831]]} - {:process 2 :type :fail :f :txn :value [[:append 2 2831]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 2832]]} - {:process 2 :type :fail :f :txn :value [[:append 4 2832]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 2833]]} - {:process 2 :type :fail :f :txn :value [[:append 7 2833]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 2834]]} - {:process 2 :type :fail :f :txn :value [[:append 1 2834]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 2835]]} - {:process 2 :type :fail :f :txn :value [[:append 0 2835]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 2836]]} - {:process 2 :type :fail :f :txn :value [[:append 2 2836]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 2837]]} - {:process 2 :type :fail :f :txn :value [[:append 5 2837]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 2838]]} - {:process 2 :type :fail :f :txn :value [[:append 7 2838]]} - {:process 4 :type :fail :f :txn :value [[:append 3 476]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 2840]]} - {:process 4 :type :fail :f :txn :value [[:append 2 2840]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 2841]]} - {:process 4 :type :fail :f :txn :value [[:append 0 2841]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 2842]]} - {:process 4 :type :fail :f :txn :value [[:append 7 2842]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 2843]]} - {:process 4 :type :fail :f :txn :value [[:append 5 2843]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 2844]]} - {:process 4 :type :fail :f :txn :value [[:append 4 2844]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 2845]]} - {:process 4 :type :fail :f :txn :value [[:append 2 2845]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 2846]]} - {:process 4 :type :fail :f :txn :value [[:append 1 2846]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 2847]]} - {:process 4 :type :fail :f :txn :value [[:append 7 2847]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 2848]]} - {:process 4 :type :fail :f :txn :value [[:append 6 2848]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 2849]]} - {:process 4 :type :fail :f :txn :value [[:append 4 2849]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 2850]]} - {:process 4 :type :fail :f :txn :value [[:append 3 2850]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 2851]]} - {:process 4 :type :fail :f :txn :value [[:append 1 2851]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 2852]]} - {:process 4 :type :fail :f :txn :value [[:append 0 2852]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3277]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3276]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 2853]]} - {:process 4 :type :fail :f :txn :value [[:append 6 2853]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 2854]]} - {:process 4 :type :fail :f :txn :value [[:append 5 2854]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3278]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3277]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3279]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3278]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3280]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3280]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 2855]]} - {:process 4 :type :fail :f :txn :value [[:append 3 2855]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 2856]]} - {:process 4 :type :fail :f :txn :value [[:append 2 2856]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3281]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3281]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3282]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3279]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3283]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3283]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3284]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3282]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 2857]]} - {:process 4 :type :fail :f :txn :value [[:append 0 2857]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 2858]]} - {:process 4 :type :fail :f :txn :value [[:append 7 2858]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3285]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3285]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3286]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3284]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3287]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3287]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3288]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3286]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 2859]]} - {:process 4 :type :fail :f :txn :value [[:append 5 2859]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 2860]]} - {:process 4 :type :fail :f :txn :value [[:append 4 2860]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3289]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3288]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3290]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3289]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3291]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3290]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3292]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3291]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 2861]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 2839]]} - {:process 4 :type :fail :f :txn :value [[:append 2 2861]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 2862]]} - {:process 2 :type :fail :f :txn :value [[:append 6 2839]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 2863]]} - {:process 2 :type :fail :f :txn :value [[:append 0 2863]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 2864]]} - {:process 4 :type :fail :f :txn :value [[:append 1 2862]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3293]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3292]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3294]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3293]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3295]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3294]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3296]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3295]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 2865]]} - {:process 2 :type :fail :f :txn :value [[:append 3 2864]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 2866]]} - {:process 2 :type :fail :f :txn :value [[:append 5 2866]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 2867]]} - {:process 2 :type :fail :f :txn :value [[:append 4 2867]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 2868]]} - {:process 2 :type :fail :f :txn :value [[:append 6 2868]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 2869]]} - {:process 2 :type :fail :f :txn :value [[:append 1 2869]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 2870]]} - {:process 2 :type :fail :f :txn :value [[:append 3 2870]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 2871]]} - {:process 2 :type :fail :f :txn :value [[:append 2 2871]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 2872]]} - {:process 2 :type :fail :f :txn :value [[:append 4 2872]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 2873]]} - {:process 2 :type :fail :f :txn :value [[:append 7 2873]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 2874]]} - {:process 2 :type :fail :f :txn :value [[:append 1 2874]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 2875]]} - {:process 2 :type :fail :f :txn :value [[:append 0 2875]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 2876]]} - {:process 2 :type :fail :f :txn :value [[:append 2 2876]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 2877]]} - {:process 2 :type :fail :f :txn :value [[:append 5 2877]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 2878]]} - {:process 2 :type :fail :f :txn :value [[:append 7 2878]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 2879]]} - {:process 2 :type :fail :f :txn :value [[:append 6 2879]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 2880]]} - {:process 2 :type :fail :f :txn :value [[:append 0 2880]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 2881]]} - {:process 2 :type :fail :f :txn :value [[:append 3 2881]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 2882]]} - {:process 2 :type :fail :f :txn :value [[:append 5 2882]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 2883]]} - {:process 2 :type :fail :f :txn :value [[:append 4 2883]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 2884]]} - {:process 2 :type :fail :f :txn :value [[:append 6 2884]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 2885]]} - {:process 2 :type :fail :f :txn :value [[:append 1 2885]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 2886]]} - {:process 2 :type :fail :f :txn :value [[:append 3 2886]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 2887]]} - {:process 2 :type :fail :f :txn :value [[:append 2 2887]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 2888]]} - {:process 2 :type :fail :f :txn :value [[:append 4 2888]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 2889]]} - {:process 2 :type :fail :f :txn :value [[:append 7 2889]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 2890]]} - {:process 2 :type :fail :f :txn :value [[:append 1 2890]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 2891]]} - {:process 2 :type :fail :f :txn :value [[:append 0 2891]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 2892]]} - {:process 2 :type :fail :f :txn :value [[:append 2 2892]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 2893]]} - {:process 2 :type :fail :f :txn :value [[:append 5 2893]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 2894]]} - {:process 2 :type :fail :f :txn :value [[:append 7 2894]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 2895]]} - {:process 2 :type :fail :f :txn :value [[:append 6 2895]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 2896]]} - {:process 2 :type :fail :f :txn :value [[:append 0 2896]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 2897]]} - {:process 2 :type :fail :f :txn :value [[:append 3 2897]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 2898]]} - {:process 4 :type :fail :f :txn :value [[:append 7 2865]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 2899]]} - {:process 4 :type :fail :f :txn :value [[:append 6 2899]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3297]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3296]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3298]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3297]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3299]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3298]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3300]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3299]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 2900]]} - {:process 4 :type :fail :f :txn :value [[:append 4 2900]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 2901]]} - {:process 4 :type :fail :f :txn :value [[:append 3 2901]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3301]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3300]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3302]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3301]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3303]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3302]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3304]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3303]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3304]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 2902]]} - {:process 4 :type :fail :f :txn :value [[:append 1 2902]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 2903]]} - {:process 4 :type :fail :f :txn :value [[:append 0 2903]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3305]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3306]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3305]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3307]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3306]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3308]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3307]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 2904]]} - {:process 4 :type :fail :f :txn :value [[:append 6 2904]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 2905]]} - {:process 4 :type :fail :f :txn :value [[:append 5 2905]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3309]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3308]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3310]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3309]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3311]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3310]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3312]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3311]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 2906]]} - {:process 4 :type :fail :f :txn :value [[:append 3 2906]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 2907]]} - {:process 4 :type :fail :f :txn :value [[:append 2 2907]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3313]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3312]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3314]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3313]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3315]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3314]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3316]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3315]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 2908]]} - {:process 4 :type :fail :f :txn :value [[:append 0 2908]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 2909]]} - {:process 4 :type :fail :f :txn :value [[:append 7 2909]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3317]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3316]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3318]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3317]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3319]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3318]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3320]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3319]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 2910]]} - {:process 4 :type :fail :f :txn :value [[:append 5 2910]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 2911]]} - {:process 4 :type :fail :f :txn :value [[:append 4 2911]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3321]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3320]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3322]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3321]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3323]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3322]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3324]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3323]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 2912]]} - {:process 4 :type :fail :f :txn :value [[:append 2 2912]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 2913]]} - {:process 4 :type :fail :f :txn :value [[:append 1 2913]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3325]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3324]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3325]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3326]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3327]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3326]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3328]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3327]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 2914]]} - {:process 4 :type :fail :f :txn :value [[:append 7 2914]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 2915]]} - {:process 4 :type :fail :f :txn :value [[:append 6 2915]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3329]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3328]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3330]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3329]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3331]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3330]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3332]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3331]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 2916]]} - {:process 4 :type :fail :f :txn :value [[:append 4 2916]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 2917]]} - {:process 4 :type :fail :f :txn :value [[:append 3 2917]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3333]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3332]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3334]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3333]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3335]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3334]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3336]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3335]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 2918]]} - {:process 4 :type :fail :f :txn :value [[:append 1 2918]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 2919]]} - {:process 4 :type :fail :f :txn :value [[:append 0 2919]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3337]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3336]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3338]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3337]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3339]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3338]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3340]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3339]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 2920]]} - {:process 4 :type :fail :f :txn :value [[:append 6 2920]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 2921]]} - {:process 4 :type :fail :f :txn :value [[:append 5 2921]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3341]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3340]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3342]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3341]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3343]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3342]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3344]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3343]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 2922]]} - {:process 4 :type :fail :f :txn :value [[:append 3 2922]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 2923]]} - {:process 4 :type :fail :f :txn :value [[:append 2 2923]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3345]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3344]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3346]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3345]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3347]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3346]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3348]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3347]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 2924]]} - {:process 4 :type :fail :f :txn :value [[:append 0 2924]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 2925]]} - {:process 4 :type :fail :f :txn :value [[:append 7 2925]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3349]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3348]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3350]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3349]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3351]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3350]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3352]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3351]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 2926]]} - {:process 4 :type :fail :f :txn :value [[:append 5 2926]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 2927]]} - {:process 4 :type :fail :f :txn :value [[:append 4 2927]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3353]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3352]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3354]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3353]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3355]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3354]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3356]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3355]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 2928]]} - {:process 4 :type :fail :f :txn :value [[:append 2 2928]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 2929]]} - {:process 4 :type :fail :f :txn :value [[:append 1 2929]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3357]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3356]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3358]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3357]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3359]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3358]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3360]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3359]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 2930]]} - {:process 4 :type :fail :f :txn :value [[:append 7 2930]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 2931]]} - {:process 4 :type :fail :f :txn :value [[:append 6 2931]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3360]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3361]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3362]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3361]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3363]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3362]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3364]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3363]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 2932]]} - {:process 4 :type :fail :f :txn :value [[:append 4 2932]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 2933]]} - {:process 4 :type :fail :f :txn :value [[:append 3 2933]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3365]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3364]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3366]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3365]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3367]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3367]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 2934]]} - {:process 4 :type :fail :f :txn :value [[:append 1 2934]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 2935]]} - {:process 4 :type :fail :f :txn :value [[:append 0 2935]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3368]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3366]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3369]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3368]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3370]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3369]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3370]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3371]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 2936]]} - {:process 4 :type :fail :f :txn :value [[:append 6 2936]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 2937]]} - {:process 4 :type :fail :f :txn :value [[:append 5 2937]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3372]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3371]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3373]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3372]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3374]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3373]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3374]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3375]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 2938]]} - {:process 4 :type :fail :f :txn :value [[:append 3 2938]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 2939]]} - {:process 4 :type :fail :f :txn :value [[:append 2 2939]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3376]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3375]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3377]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3376]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3378]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3377]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3379]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3378]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 2940]]} - {:process 4 :type :fail :f :txn :value [[:append 0 2940]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 2941]]} - {:process 4 :type :fail :f :txn :value [[:append 7 2941]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3380]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3379]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3381]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3380]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3382]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3381]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3383]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3382]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 2942]]} - {:process 4 :type :fail :f :txn :value [[:append 5 2942]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 2943]]} - {:process 4 :type :fail :f :txn :value [[:append 4 2943]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3384]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3383]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3385]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3384]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3386]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3385]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3386]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3387]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 2944]]} - {:process 4 :type :fail :f :txn :value [[:append 2 2944]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 2945]]} - {:process 4 :type :fail :f :txn :value [[:append 1 2945]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3388]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3387]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3389]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3388]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3390]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3389]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3390]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3391]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 2946]]} - {:process 4 :type :fail :f :txn :value [[:append 7 2946]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 2947]]} - {:process 4 :type :fail :f :txn :value [[:append 6 2947]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3392]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3391]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3392]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3394]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3394]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3393]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 2948]]} - {:process 4 :type :fail :f :txn :value [[:append 4 2948]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 2949]]} - {:process 4 :type :fail :f :txn :value [[:append 3 2949]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3395]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3393]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3396]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3395]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3397]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3396]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3398]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3397]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 2950]]} - {:process 4 :type :fail :f :txn :value [[:append 1 2950]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 2951]]} - {:process 4 :type :fail :f :txn :value [[:append 0 2951]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3399]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3398]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3400]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3399]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3401]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3400]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3402]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3401]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 2952]]} - {:process 4 :type :fail :f :txn :value [[:append 6 2952]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 2953]]} - {:process 4 :type :fail :f :txn :value [[:append 5 2953]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3403]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3402]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3404]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3403]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3405]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3404]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3406]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3405]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 2954]]} - {:process 4 :type :fail :f :txn :value [[:append 3 2954]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 2955]]} - {:process 4 :type :fail :f :txn :value [[:append 2 2955]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3407]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3406]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3408]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3407]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3409]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3408]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3410]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3409]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 2956]]} - {:process 4 :type :fail :f :txn :value [[:append 0 2956]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 2957]]} - {:process 4 :type :fail :f :txn :value [[:append 7 2957]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3411]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3410]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3412]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3411]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3413]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3412]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3414]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3413]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 2958]]} - {:process 4 :type :fail :f :txn :value [[:append 5 2958]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 2959]]} - {:process 4 :type :fail :f :txn :value [[:append 4 2959]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3415]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3414]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3416]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3415]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3417]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3416]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3418]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3417]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3418]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 2960]]} - {:process 4 :type :fail :f :txn :value [[:append 2 2960]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 2961]]} - {:process 4 :type :fail :f :txn :value [[:append 1 2961]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3419]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3420]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3419]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3421]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3420]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3422]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3421]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3422]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3423]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 2962]]} - {:process 4 :type :fail :f :txn :value [[:append 7 2962]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 2963]]} - {:process 4 :type :fail :f :txn :value [[:append 6 2963]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3424]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3423]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3425]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3424]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3426]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3425]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3427]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3426]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 2964]]} - {:process 4 :type :fail :f :txn :value [[:append 4 2964]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 2965]]} - {:process 4 :type :fail :f :txn :value [[:append 3 2965]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3428]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3427]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3429]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3428]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3430]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3429]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3430]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3431]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 2966]]} - {:process 4 :type :fail :f :txn :value [[:append 1 2966]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 2967]]} - {:process 4 :type :fail :f :txn :value [[:append 0 2967]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3432]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3431]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3433]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3432]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3434]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3433]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3435]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3434]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 2968]]} - {:process 4 :type :fail :f :txn :value [[:append 6 2968]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 2969]]} - {:process 4 :type :fail :f :txn :value [[:append 5 2969]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3436]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3435]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3437]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3436]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3438]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3437]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3438]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3439]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 2970]]} - {:process 4 :type :fail :f :txn :value [[:append 3 2970]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 2971]]} - {:process 4 :type :fail :f :txn :value [[:append 2 2971]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3440]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3439]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3441]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3440]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3442]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3441]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3442]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3443]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 2972]]} - {:process 4 :type :fail :f :txn :value [[:append 0 2972]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 2973]]} - {:process 4 :type :fail :f :txn :value [[:append 7 2973]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3444]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3443]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3445]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3444]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3446]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3445]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3446]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3447]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 2974]]} - {:process 4 :type :fail :f :txn :value [[:append 5 2974]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 2975]]} - {:process 4 :type :fail :f :txn :value [[:append 4 2975]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3448]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3447]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3449]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3448]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3450]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3449]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3450]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3451]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 2976]]} - {:process 4 :type :fail :f :txn :value [[:append 2 2976]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 2977]]} - {:process 4 :type :fail :f :txn :value [[:append 1 2977]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3452]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3451]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3453]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3452]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3454]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3453]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3454]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3455]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 2978]]} - {:process 4 :type :fail :f :txn :value [[:append 7 2978]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 2979]]} - {:process 4 :type :fail :f :txn :value [[:append 6 2979]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3456]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3455]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3457]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3456]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3458]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3457]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3458]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3459]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 2980]]} - {:process 4 :type :fail :f :txn :value [[:append 4 2980]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 2981]]} - {:process 4 :type :fail :f :txn :value [[:append 3 2981]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3460]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3459]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3461]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3460]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3462]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3461]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3463]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3462]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 2982]]} - {:process 4 :type :fail :f :txn :value [[:append 1 2982]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 2983]]} - {:process 4 :type :fail :f :txn :value [[:append 0 2983]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3464]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3463]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3465]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3464]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3466]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3466]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 2984]]} - {:process 4 :type :fail :f :txn :value [[:append 6 2984]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 2985]]} - {:process 4 :type :fail :f :txn :value [[:append 5 2985]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3467]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3465]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3468]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3467]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3469]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3468]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3470]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3469]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 2986]]} - {:process 4 :type :fail :f :txn :value [[:append 3 2986]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 2987]]} - {:process 4 :type :fail :f :txn :value [[:append 2 2987]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3471]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3470]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3472]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3471]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3473]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3472]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3474]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3473]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 2988]]} - {:process 4 :type :fail :f :txn :value [[:append 0 2988]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 2989]]} - {:process 4 :type :fail :f :txn :value [[:append 7 2989]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3474]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3475]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3476]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3475]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3477]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3476]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3478]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3477]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 2990]]} - {:process 4 :type :fail :f :txn :value [[:append 5 2990]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 2991]]} - {:process 4 :type :fail :f :txn :value [[:append 4 2991]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3479]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3478]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3480]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3479]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3481]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3480]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3482]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3481]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 2992]]} - {:process 4 :type :fail :f :txn :value [[:append 2 2992]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 2993]]} - {:process 4 :type :fail :f :txn :value [[:append 1 2993]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3483]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3482]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3484]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3483]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3485]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3484]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3486]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3485]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 2994]]} - {:process 4 :type :fail :f :txn :value [[:append 7 2994]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 2995]]} - {:process 4 :type :fail :f :txn :value [[:append 6 2995]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3487]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3486]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3488]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3487]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3489]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3488]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3490]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3489]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 2996]]} - {:process 4 :type :fail :f :txn :value [[:append 4 2996]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 2997]]} - {:process 4 :type :fail :f :txn :value [[:append 3 2997]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3491]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3490]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3492]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3491]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3493]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3492]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3494]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3493]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 2998]]} - {:process 4 :type :fail :f :txn :value [[:append 1 2998]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 2999]]} - {:process 4 :type :fail :f :txn :value [[:append 0 2999]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3495]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3494]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3496]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3495]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3497]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3496]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3498]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3497]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3000]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3000]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3001]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3001]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3499]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3498]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3499]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3500]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3501]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3500]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3002]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3002]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3003]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3003]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3502]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3501]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3503]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3502]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3504]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3503]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3504]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3505]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3004]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3004]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3005]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3005]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3506]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3505]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3507]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3506]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3508]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3507]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3508]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3509]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3006]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3006]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3007]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3007]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3510]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3509]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3511]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3510]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3512]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3511]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3512]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3513]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3008]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3008]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3009]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3009]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3514]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3513]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3515]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3514]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3516]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3515]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3517]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3516]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3010]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3010]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3011]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3011]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3518]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3517]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3519]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3518]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3520]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3519]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3520]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3521]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3012]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3012]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3013]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3013]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3522]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3521]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3523]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3522]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3524]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3523]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3524]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3525]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3014]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3014]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3015]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3015]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3526]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3525]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3527]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3526]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3528]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3527]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3528]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3529]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3016]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3016]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3017]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3017]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3530]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3529]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3531]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3530]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3531]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3532]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3533]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3532]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3018]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3018]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3019]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3019]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3534]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3533]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3535]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3534]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3536]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3535]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3537]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3536]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3020]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3020]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3021]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3021]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3538]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3537]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3539]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3538]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3540]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3539]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3541]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3540]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3022]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3022]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3023]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3023]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3542]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3541]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3543]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3542]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3544]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3543]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3544]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3545]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3024]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3024]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3025]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3025]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3546]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3545]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3547]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3546]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3548]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3547]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3548]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3549]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3026]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3026]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3027]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3027]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3550]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3549]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3551]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3550]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3552]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3551]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3552]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3553]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3028]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3028]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3029]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3029]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3554]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3553]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3555]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3554]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3556]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3555]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3556]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3557]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3030]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3030]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3031]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3031]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3558]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3557]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3559]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3558]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3560]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3559]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3561]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3560]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3032]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3032]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3033]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3033]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3562]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3561]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3563]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3562]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3564]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3563]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3564]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3565]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3034]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3034]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3035]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3035]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3566]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3565]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3567]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3566]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3568]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3567]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3569]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3568]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3036]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3036]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3037]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3037]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3570]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3569]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3571]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3570]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3572]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3571]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3573]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3572]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3038]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3038]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3039]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3039]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3574]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3573]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3575]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3574]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3576]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3575]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3576]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3577]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3040]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3040]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3041]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3041]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3578]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3577]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3579]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3578]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3580]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3579]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3580]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3581]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3042]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3042]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3043]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3043]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3582]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3581]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3583]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3582]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3584]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3583]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3584]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3585]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3044]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3044]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3045]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3045]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3586]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3585]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3587]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3586]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3588]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3587]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3588]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3046]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3046]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3047]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3047]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3590]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3589]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3590]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3591]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3589]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3592]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3591]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3048]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3048]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3049]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3049]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3593]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3592]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3594]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3593]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3595]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3594]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3596]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3595]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3050]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3050]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3051]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3051]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3597]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3596]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3598]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3597]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3599]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3598]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3600]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3599]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3052]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3052]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3053]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3053]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3601]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3600]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3602]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3601]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3603]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3602]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3604]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3603]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3054]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3054]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3055]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3055]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3605]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3604]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3606]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3605]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3607]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3606]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3608]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3607]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3056]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3056]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3057]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3057]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3609]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3608]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3610]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3609]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3611]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3610]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3612]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3611]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3058]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3058]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3059]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3059]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3613]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3612]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3614]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3613]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3615]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3614]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3616]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3615]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3060]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3060]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3061]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3061]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3617]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3616]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3618]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3617]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3619]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3618]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3620]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3619]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3062]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3062]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3063]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3063]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3621]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3620]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3622]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3621]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3623]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3622]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3624]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3623]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3064]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3064]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3065]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3065]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3625]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3624]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3626]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3625]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3627]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3626]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3628]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3627]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3066]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3066]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3067]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3067]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3629]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3628]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3630]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3629]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3631]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3630]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3632]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3631]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3068]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3068]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3069]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3069]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3633]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3632]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3634]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3633]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3635]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3634]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3636]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3635]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3070]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3070]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3071]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3071]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3637]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3636]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3638]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3637]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3639]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3638]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3640]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3639]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3072]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3072]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3073]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3073]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3641]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3640]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3642]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3641]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3643]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3642]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3644]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3643]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3074]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3074]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3075]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3075]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3645]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3644]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3645]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3646]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3647]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3646]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3076]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3076]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3077]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3077]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3648]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3647]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3649]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3648]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3650]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3649]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3651]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3650]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3078]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3078]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3079]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3079]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3652]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3651]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3653]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3652]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3654]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3653]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3655]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3654]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3080]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3080]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3081]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3081]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3656]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3655]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3657]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3656]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3658]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3657]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3658]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3659]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3082]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3082]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3083]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3083]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3660]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3659]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3661]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3660]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3662]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3661]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3662]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3663]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3084]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3084]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3085]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3085]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3664]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3663]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3665]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3664]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3666]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3665]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3666]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3667]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3086]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3086]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3087]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3087]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3668]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3667]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3669]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3668]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3670]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3669]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3671]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3670]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3088]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3088]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3089]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3089]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3672]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3671]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3673]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3672]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3674]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3673]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3675]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3674]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3090]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3090]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3091]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3091]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3676]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3675]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3677]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3676]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3678]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3677]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3678]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3679]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3092]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3092]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3093]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3093]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3680]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3679]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3681]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3680]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3682]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3681]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3682]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3683]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3094]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3094]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3095]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3095]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3684]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3683]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3685]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3684]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3686]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3685]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3686]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3687]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3096]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3096]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3097]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3097]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3688]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3687]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3689]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3688]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3690]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3689]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3690]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3691]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3098]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3098]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3099]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3099]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3692]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3691]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3693]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3692]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3694]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3693]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3694]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3695]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3100]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3100]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3101]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3101]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3696]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3695]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3697]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3696]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3698]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3697]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3699]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3698]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3102]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3102]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3103]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3103]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3700]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3699]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3701]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3700]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3702]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3701]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3702]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3104]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3104]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3105]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3105]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3703]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3704]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3703]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3705]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3704]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3706]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3705]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3106]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3106]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3107]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3107]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3707]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3706]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3708]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3707]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3709]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3708]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3710]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3709]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3108]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3108]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3109]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3109]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3711]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3710]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3712]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3711]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3713]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3712]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3714]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3713]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3110]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3110]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3111]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3111]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3715]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3714]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3716]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3715]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3717]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3716]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3718]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3717]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3112]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3112]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3113]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3113]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3719]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3718]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3720]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3719]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3721]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3720]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3722]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3721]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3114]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3114]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3115]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3115]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3723]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3722]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3724]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3723]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3725]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3724]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3726]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3725]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3116]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3116]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3117]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3117]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3727]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3726]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3728]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3727]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3729]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3728]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3730]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3729]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3118]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3118]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3119]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3119]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3731]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3730]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3732]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3731]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3733]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3732]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3734]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3733]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3120]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3120]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3121]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3121]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3735]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3734]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3736]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3735]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3737]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3736]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3738]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3737]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3122]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3122]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3123]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3123]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3739]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3738]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3740]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3739]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3741]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3740]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3742]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3741]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3124]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3124]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3125]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3125]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3743]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3742]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3744]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3743]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3745]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3744]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3746]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3745]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3126]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3126]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3127]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3127]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3747]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3746]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3748]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3747]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3749]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3748]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3750]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3749]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3128]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3128]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3129]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3129]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3751]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3750]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3752]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3751]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3753]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3752]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3754]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3753]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3130]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3130]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3131]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3131]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3755]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3754]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3756]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3755]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3757]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3756]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3758]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3757]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3132]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3132]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3133]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3133]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3759]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3758]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3760]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3759]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3761]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3760]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3762]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3761]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3134]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3134]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3135]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3135]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3763]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3762]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3764]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3763]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3765]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3764]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3766]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3765]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3136]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3136]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3137]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3137]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3767]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3766]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3768]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3767]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3769]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3768]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3770]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3769]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3138]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3138]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3139]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3139]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3771]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3770]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3772]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3771]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3773]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3772]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3774]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3773]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3140]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3140]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3141]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3141]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3775]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3774]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3776]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3775]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3777]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3776]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3778]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3777]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3142]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3142]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3143]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3143]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3779]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3778]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3780]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3779]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3781]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3780]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3782]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3781]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3144]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3144]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3145]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3145]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3783]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3782]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3784]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3783]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3785]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3784]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3786]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3785]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3146]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3146]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3147]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3147]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3787]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3786]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3788]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3787]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3789]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3788]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3790]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3789]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3148]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3148]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3149]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3149]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3791]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3790]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3792]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3791]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3793]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3792]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3794]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3793]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3150]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3150]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3151]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3151]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3795]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3794]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3796]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3795]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3797]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3796]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3798]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3797]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3152]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3152]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3153]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3153]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3799]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3798]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3800]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3799]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3801]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3800]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3802]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3801]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3154]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3154]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3155]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3155]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3803]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3802]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3804]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3803]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3805]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3804]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3806]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3805]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3156]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3156]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3157]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3157]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3807]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3806]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3808]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3807]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3809]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3808]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3810]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3809]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3158]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3158]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3159]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3159]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3811]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3810]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3812]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3811]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3813]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3813]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3160]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3160]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3161]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3161]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3814]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3812]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3815]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3814]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3816]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3816]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3815]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3162]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3162]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3163]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3163]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3817]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3818]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3817]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3819]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3818]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3820]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3820]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3821]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3819]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3164]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3164]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3165]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3165]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3822]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3821]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3823]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3822]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3824]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3823]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3825]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3824]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3166]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3166]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3167]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3167]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3826]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3825]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3827]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3826]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3828]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3827]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3828]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3829]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3168]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3168]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3169]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3169]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3830]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3829]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3831]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3830]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3832]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3831]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3832]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3833]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3170]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3170]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3171]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3171]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3834]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3833]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3835]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3834]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3836]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3835]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3836]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3837]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3172]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3172]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3173]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3173]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3838]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3837]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3839]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3838]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3840]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3839]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3840]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3841]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3174]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3174]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3175]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3175]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3842]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3841]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3843]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3842]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3844]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3843]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3845]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3844]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3176]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3176]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3177]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3177]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3846]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3845]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3847]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3846]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3848]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3847]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3849]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3848]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3178]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3178]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3179]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3179]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3850]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3849]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3851]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3850]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3852]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3851]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3852]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3853]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3180]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3180]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3181]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3181]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3854]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3853]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3855]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3854]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3856]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3855]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3856]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3857]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3182]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3182]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3183]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3183]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3858]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3857]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3859]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3858]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3860]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3859]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3860]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3861]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3184]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3184]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3185]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3185]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3862]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3861]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3863]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3862]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3864]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3863]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3864]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3865]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3186]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3186]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3187]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3187]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3866]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3865]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3867]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3866]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3868]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3868]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3188]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3188]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3189]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3189]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3869]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3867]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3869]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3870]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3871]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3870]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3872]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3871]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3190]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3190]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3191]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3191]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3872]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3873]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3874]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3873]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3875]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3874]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3876]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3875]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3192]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3192]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3193]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3193]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3877]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3876]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3878]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3877]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3879]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3878]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3880]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3879]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3194]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3194]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3195]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3195]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3881]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3880]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3882]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3881]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3883]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3882]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3884]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3883]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3196]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3196]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3197]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3197]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3885]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3884]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3886]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3885]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3887]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3886]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3888]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3887]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3198]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3198]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3199]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3199]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3889]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3888]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3890]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3889]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3891]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3890]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3892]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3891]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3200]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3200]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3201]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3201]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3893]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3892]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3894]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3893]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3895]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3894]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3896]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3895]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3202]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3202]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3203]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3203]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3897]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3896]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3898]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3897]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3899]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3898]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3900]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3899]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3204]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3204]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3205]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3205]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3901]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3900]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3902]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3901]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3903]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3902]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3904]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3903]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3206]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3206]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3207]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3207]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3905]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3904]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3906]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3905]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3907]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3906]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3908]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3907]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3208]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3208]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3209]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3209]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3909]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3908]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3909]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3910]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3911]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3910]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3912]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3911]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3210]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3210]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3211]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3211]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3913]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3912]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3914]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3913]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3915]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3914]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3916]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3915]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3212]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3212]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3213]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3213]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3917]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3916]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3918]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3917]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3919]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3918]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3920]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3919]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3214]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3214]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3215]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3215]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3921]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3920]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3922]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3921]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3923]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3922]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3924]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3923]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3216]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3216]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3217]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3217]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3925]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3924]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3926]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3925]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3927]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3926]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3928]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3927]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3218]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3218]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3219]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3219]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3929]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3928]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3929]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3930]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3931]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3930]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3220]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3220]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3221]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3221]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3932]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3931]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3933]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3932]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3934]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3933]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3934]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3935]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3222]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3222]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3223]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3223]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3936]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3935]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3937]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3936]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3938]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3937]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3938]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3939]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3224]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3224]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3225]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3225]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3940]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3939]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3941]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3940]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3942]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3941]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3942]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3943]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3226]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3226]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3227]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3227]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3944]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3943]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3945]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3944]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3946]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3945]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3947]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3946]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3228]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3228]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3229]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3229]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3948]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3947]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3949]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3948]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3950]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3949]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3951]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3950]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3230]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3230]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3231]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3231]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3952]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3951]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3953]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3952]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3954]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3953]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3955]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3954]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3232]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3232]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3233]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3233]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3956]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3955]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3957]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3956]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3958]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3957]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3958]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3959]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3234]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3234]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3235]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3235]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3960]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3959]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3961]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3960]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3962]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3961]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3963]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3962]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3236]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3236]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3237]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3237]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3964]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3963]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3965]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3964]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3966]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3965]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3966]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3967]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3238]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3238]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3239]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3239]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3968]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3967]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3969]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3968]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3970]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3969]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3971]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3970]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3240]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3240]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3241]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3241]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3972]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3971]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3973]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3972]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3974]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3973]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3974]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3975]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3242]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3242]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3243]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3243]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3976]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3975]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3977]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3976]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3978]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3977]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 3979]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3978]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3244]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3244]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3245]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3245]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 3980]]} + {:process 6 :type :fail :f :txn :value [[:append 3 3979]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3981]]} + {:process 4 :type :fail :f :txn :value [[:append 0 3980]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3982]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3981]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 3983]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3982]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3246]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3246]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3247]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3247]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 3984]]} + {:process 6 :type :fail :f :txn :value [[:append 2 3983]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3985]]} + {:process 4 :type :fail :f :txn :value [[:append 5 3984]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3986]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3985]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3986]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 3987]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3248]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3248]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3249]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3249]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 3988]]} + {:process 6 :type :fail :f :txn :value [[:append 5 3987]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3989]]} + {:process 4 :type :fail :f :txn :value [[:append 2 3988]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 3990]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3989]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 3990]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 3991]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3250]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3250]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3251]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3251]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 3992]]} + {:process 6 :type :fail :f :txn :value [[:append 4 3991]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 3993]]} + {:process 4 :type :fail :f :txn :value [[:append 7 3992]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 3994]]} + {:process 6 :type :fail :f :txn :value [[:append 1 3993]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 3994]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 3995]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3252]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3252]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3253]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3253]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 3996]]} + {:process 6 :type :fail :f :txn :value [[:append 7 3995]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 3997]]} + {:process 4 :type :fail :f :txn :value [[:append 4 3996]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 3998]]} + {:process 6 :type :fail :f :txn :value [[:append 0 3997]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 3998]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 3999]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3254]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3254]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3255]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3255]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4000]]} + {:process 6 :type :fail :f :txn :value [[:append 6 3999]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4001]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4000]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4002]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4001]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4002]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4003]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3256]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3256]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3257]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3257]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4004]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4003]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4005]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4004]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4006]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4005]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4007]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4006]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3258]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3258]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3259]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3259]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4008]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4007]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4009]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4008]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4010]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4009]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4010]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4011]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3260]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3260]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3261]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3261]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4012]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4011]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4013]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4012]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4014]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4013]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4014]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4015]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3262]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3262]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3263]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3263]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4016]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4015]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4017]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4016]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4018]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4017]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4019]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4018]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3264]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3264]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3265]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3265]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4020]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4019]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4021]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4020]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4022]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4021]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4023]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4022]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3266]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3266]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3267]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3267]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4024]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4023]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4025]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4024]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4026]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4025]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4026]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4027]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3268]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3268]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3269]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3269]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4028]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4027]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4029]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4028]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4030]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4029]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4030]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4031]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3270]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3270]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3271]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3271]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4032]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4031]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4033]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4032]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4034]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4033]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4034]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4035]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3272]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3272]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3273]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3273]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4036]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4035]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4037]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4036]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4038]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4037]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4038]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4039]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3274]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3274]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3275]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3275]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4040]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4039]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4041]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4040]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4042]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4041]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4042]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4043]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3276]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3276]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3277]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3277]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4044]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4043]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4045]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4044]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4046]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4045]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4046]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4047]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3278]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3278]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3279]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3279]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4048]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4047]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4049]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4048]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4050]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4049]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4050]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4051]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3280]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3280]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3281]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3281]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4052]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4051]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4053]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4052]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4054]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4053]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4054]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4055]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3282]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3282]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3283]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3283]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4056]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4055]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4057]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4056]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4058]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4057]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4058]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4059]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3284]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3284]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3285]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3285]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4060]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4059]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4061]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4060]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4062]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4061]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4063]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4062]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3286]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3286]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3287]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3287]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4064]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4063]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4065]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4064]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4066]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4065]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4066]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4067]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3288]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3288]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3289]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3289]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4068]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4067]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4069]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4068]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4070]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4069]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4070]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4071]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3290]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3290]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3291]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3291]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4072]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4071]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4073]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4072]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4074]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4073]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4074]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4075]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3292]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3292]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3293]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3293]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4076]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4075]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4077]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4076]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4078]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4077]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4078]]} {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4079]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3294]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3294]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3295]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3295]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4080]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4079]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4081]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4080]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4082]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4081]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4082]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4083]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3296]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3296]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3297]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3297]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4084]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4083]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4085]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4084]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4086]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4085]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4086]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4087]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3298]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3298]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3299]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3299]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4088]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4087]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4089]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4088]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4090]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4089]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4090]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4091]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3300]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3300]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3301]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3301]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4092]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4091]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4093]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4092]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4094]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4093]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4095]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4094]]} {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3302]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3302]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3303]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3303]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4096]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4095]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4097]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4096]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4098]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4097]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4099]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4098]]} {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3304]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3304]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3305]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3305]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4100]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4100]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4101]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4099]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4102]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4101]]} {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3306]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3306]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3307]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3307]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4103]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4102]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4104]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4103]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4105]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4104]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4106]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4105]]} {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 3308]]} - {:process 4 :type :fail :f :txn :value [[:append 0 3308]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3309]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3309]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4107]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4106]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4108]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4107]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4109]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4108]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4110]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4109]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 3310]]} - {:process 4 :type :fail :f :txn :value [[:append 5 3310]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3311]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3311]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4111]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4110]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4112]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4111]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4113]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4112]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4114]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4113]]} {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 3312]]} - {:process 4 :type :fail :f :txn :value [[:append 2 3312]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 3313]]} - {:process 4 :type :fail :f :txn :value [[:append 1 3313]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4115]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4114]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4115]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4116]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4117]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4116]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4118]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4117]]} {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 3314]]} - {:process 4 :type :fail :f :txn :value [[:append 7 3314]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 3315]]} - {:process 4 :type :fail :f :txn :value [[:append 6 3315]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4119]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4118]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4120]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4119]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4121]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4120]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4122]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4121]]} {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 3316]]} - {:process 4 :type :fail :f :txn :value [[:append 4 3316]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 3317]]} - {:process 2 :type :fail :f :txn :value [[:append 5 2898]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3318]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3318]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3319]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3319]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3320]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3320]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3321]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3321]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3322]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3322]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3323]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3323]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3324]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3324]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3325]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3325]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3326]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3326]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3327]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3327]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3328]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3328]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3329]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3329]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3330]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3330]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3331]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3331]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3332]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3332]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3333]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3333]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3334]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3334]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3335]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3335]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3336]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3336]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3337]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3337]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3338]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3338]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3339]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3339]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3340]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3340]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3341]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3341]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3342]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3342]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3343]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3343]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3344]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3344]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3345]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3345]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3346]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3346]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3347]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3347]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3348]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3348]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3349]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3349]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3350]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3350]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3351]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3351]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3352]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3352]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3353]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3353]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3354]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3354]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3355]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3355]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3356]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3356]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3357]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3357]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3358]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3358]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3359]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3359]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3360]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3360]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3361]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3361]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3362]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3362]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3363]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3363]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3364]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3364]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3365]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3365]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3366]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3366]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3367]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3367]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3368]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3368]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3369]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3369]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3370]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3370]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3371]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3371]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3372]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3372]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3373]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3373]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3374]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3374]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3375]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3375]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3376]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3376]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3377]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3377]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3378]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3378]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3379]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3379]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3380]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3380]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3381]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3381]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3382]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3382]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3383]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3383]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3384]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3384]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3385]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3385]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3386]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3386]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3387]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3387]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3388]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3388]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3389]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3389]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3390]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3390]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3391]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3391]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3392]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3392]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3393]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3393]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3394]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3394]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3395]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3395]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3396]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3396]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3397]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3397]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3398]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3398]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3399]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3399]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3400]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3400]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3401]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3401]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3402]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3402]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3403]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3403]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3404]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3404]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3405]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3405]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3406]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3406]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3407]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3407]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3408]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3408]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3409]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3409]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3410]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3410]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3411]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3411]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3412]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3412]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3413]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3413]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3414]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3414]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3415]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3415]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3416]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3416]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3417]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3417]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3418]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3418]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3419]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3419]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3420]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3420]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3421]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3421]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3422]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3422]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3423]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3423]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3424]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3424]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3425]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3425]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3426]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3426]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3427]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3427]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3428]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3428]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3429]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3429]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3430]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3430]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3431]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3431]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3432]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3432]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3433]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3433]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3434]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3434]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3435]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3435]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3436]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3436]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3437]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3437]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3438]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3438]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3439]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3439]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3440]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3440]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3441]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3441]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3442]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3442]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3443]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3443]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3444]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3444]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3445]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3445]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3446]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3446]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3447]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3447]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3448]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3448]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3449]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3449]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3450]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3450]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3451]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3451]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3452]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3452]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3453]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3453]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3454]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3454]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3455]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3455]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3456]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3456]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3457]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3457]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3458]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3458]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3459]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3459]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3460]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3460]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3461]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3461]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3462]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3462]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3463]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3463]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3464]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3464]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3465]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3465]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3466]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3466]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3467]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3467]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3468]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3468]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3469]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3469]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3470]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3470]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3471]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3471]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3472]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3472]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3473]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3473]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3474]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3474]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3475]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3475]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3476]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3476]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3477]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3477]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3478]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3478]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3479]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3479]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3480]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3480]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3481]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3481]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3482]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3482]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3483]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3483]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3484]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3484]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3485]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3485]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3486]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3486]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3487]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3487]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3488]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3488]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3489]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3489]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3490]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3490]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3491]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3491]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3492]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3492]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3493]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3493]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3494]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3494]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3495]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3495]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3496]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3496]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3497]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3497]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3498]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3498]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3499]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3499]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3500]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3500]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3501]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3501]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3502]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3502]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3503]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3503]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3504]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3504]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3505]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3505]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3506]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3506]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3507]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3507]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3508]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3508]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3509]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3509]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3510]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3510]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3511]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3511]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3512]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3512]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3513]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3513]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3514]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3514]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3515]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3515]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3516]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3516]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3517]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3517]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3518]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3518]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3519]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3519]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3520]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3520]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3521]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3521]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3522]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3522]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3523]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3523]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3524]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3524]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3525]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3525]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3526]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3526]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3527]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3527]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3528]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3528]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3529]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3529]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3530]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3530]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3531]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3531]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3532]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3532]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3533]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3533]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3534]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3534]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3535]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3535]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3536]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3536]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3537]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3537]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3538]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3538]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3539]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3539]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3540]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3540]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3541]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3541]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3542]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3542]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3543]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3543]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3544]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3544]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3545]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3545]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3546]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3546]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3547]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3547]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3548]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3548]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3549]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3549]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3550]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3550]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3551]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3551]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3552]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3552]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3553]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3553]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3554]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3554]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3555]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3555]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3556]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3556]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3557]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3557]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3558]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3558]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3559]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3559]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3560]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3560]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3561]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3561]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3562]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3562]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3563]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3563]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3564]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3564]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3565]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3565]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3566]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3566]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3567]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3567]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3568]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3568]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3569]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3569]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3570]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3570]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3571]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3571]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3572]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3572]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3573]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3573]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3574]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3574]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3575]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3575]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3576]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3576]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3577]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3577]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3578]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3578]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3579]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3579]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3580]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3580]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3581]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3581]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3582]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3582]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3583]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3583]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3584]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3584]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3585]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3585]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3586]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3586]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3587]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3587]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3588]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3588]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3589]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3589]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3590]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3590]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3591]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3591]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3592]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3592]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3593]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3593]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3594]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3594]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3595]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3595]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3596]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3596]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3597]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3597]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3598]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3598]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3599]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3599]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3600]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3600]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3601]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3601]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3602]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3602]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3603]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3603]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3604]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3604]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3605]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3605]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3606]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3606]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3607]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3607]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3608]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3608]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3609]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3609]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3610]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3610]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3611]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3611]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3612]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3612]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3613]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3613]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3614]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3614]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3615]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3615]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3616]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3616]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3617]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3617]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3618]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3618]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3619]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3619]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3620]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3620]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3621]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3621]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3622]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3622]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3623]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3623]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3624]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3624]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3625]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3625]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3626]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3626]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3627]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3627]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3628]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3628]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3629]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3629]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3630]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3630]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3631]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3631]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3632]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3632]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3633]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3633]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3634]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3634]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3635]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3635]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3636]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3636]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3637]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3637]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3638]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3638]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3639]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3639]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3640]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3640]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3641]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3641]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3642]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3642]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3643]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3643]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3644]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3644]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3645]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3645]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3646]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3646]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3647]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3647]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3648]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3648]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3649]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3649]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3650]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3650]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3651]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3651]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3652]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3652]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3653]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3653]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3654]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3654]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3655]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3655]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3656]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3656]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3657]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3657]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3658]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3658]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3659]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3659]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3660]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3660]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3661]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3661]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3662]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3662]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3663]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3663]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3664]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3664]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3665]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3665]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3666]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3666]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3667]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3667]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3668]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3668]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3669]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3669]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3670]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3670]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3671]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3671]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3672]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3672]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3673]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3673]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3674]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3674]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3675]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3675]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3676]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3676]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3677]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3677]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3678]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3678]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3679]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3679]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3680]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3680]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3681]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3681]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3682]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3682]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3683]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3683]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3684]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3684]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3685]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3685]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3686]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3686]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3687]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3687]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3688]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3688]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3689]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3689]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3690]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3690]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3691]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3691]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3692]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3692]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3693]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3693]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3694]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3694]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3695]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3695]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3696]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3696]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3697]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3697]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3698]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3698]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3699]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3699]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3700]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3700]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3701]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3701]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3702]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3702]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3703]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3703]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3704]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3704]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3705]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3705]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3706]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3706]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3707]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3707]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3708]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3708]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3709]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3709]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3710]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3710]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3711]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3711]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3712]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3712]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3713]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3713]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3714]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3714]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3715]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3715]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3716]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3716]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3717]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3717]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3718]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3718]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3719]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3719]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3720]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3720]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3721]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3721]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3722]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3722]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3723]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3723]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3724]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3724]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3725]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3725]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3726]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3726]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3727]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3727]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3728]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3728]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3729]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3729]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3730]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3730]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3731]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3731]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3732]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3732]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3733]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3733]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3734]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3734]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3735]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3735]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3736]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3736]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3737]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3737]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3738]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3738]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3739]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3739]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3740]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3740]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3741]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3741]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3742]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3742]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3743]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3743]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3744]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3744]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3745]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3745]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3746]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3746]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3747]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3747]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3748]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3748]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3749]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3749]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3750]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3750]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3751]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3751]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3752]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3752]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3753]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3753]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3754]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3754]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3755]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3755]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3756]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3756]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3757]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3757]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3758]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3758]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3759]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3759]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3760]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3760]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3761]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3761]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3762]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3762]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3763]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3763]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3764]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3764]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3765]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3765]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3766]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3766]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3767]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3767]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3768]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3768]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3769]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3769]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3770]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3770]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3771]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3771]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3772]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3772]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3773]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3773]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3774]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3774]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3775]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3775]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3776]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3776]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3777]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3777]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3778]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3778]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3779]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3779]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3780]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3780]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3781]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3781]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3782]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3782]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3783]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3783]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3784]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3784]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3785]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3785]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3786]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3786]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3787]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3787]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3788]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3788]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3789]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3789]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3790]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3790]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3791]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3791]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3792]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3792]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3793]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3793]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3794]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3794]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3795]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3795]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3796]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3796]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3797]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3797]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3798]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3798]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3799]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3799]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3800]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3800]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3801]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3801]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3802]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3802]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3803]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3803]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3804]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3804]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3805]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3805]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3806]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3806]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3807]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3807]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3808]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3808]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3809]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3809]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3810]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3810]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3811]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3811]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3812]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3812]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3813]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3813]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3814]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3814]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3815]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3815]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3816]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3816]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3817]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3817]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3818]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3818]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3819]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3819]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3820]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3820]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3821]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3821]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3822]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3822]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3823]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3823]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3824]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3824]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3825]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3825]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3826]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3826]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3827]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3827]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3828]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3828]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3829]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3829]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3830]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3830]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3831]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3831]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3832]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3832]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3833]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3833]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3834]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3834]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3835]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3835]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3836]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3836]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3837]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3837]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3838]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3838]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3839]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3839]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3840]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3840]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3841]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3841]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3842]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3842]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3843]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3843]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3844]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3844]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3845]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3845]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3846]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3846]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3847]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3847]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3848]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3848]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3849]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3849]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3850]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3850]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3851]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3851]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3852]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3852]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3853]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3853]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3854]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3854]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3855]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3855]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3856]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3856]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3857]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3857]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3858]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3858]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3859]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3859]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3860]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3860]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3861]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3861]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3862]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3862]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3863]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3863]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3864]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3864]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3865]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3865]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3866]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3866]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3867]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3867]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3868]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3868]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3869]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3869]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3870]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3870]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3871]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3871]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3872]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3872]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3873]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3873]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3874]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3874]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3875]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3875]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3876]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3876]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3877]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3877]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3878]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3878]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3879]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3879]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3880]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3880]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3881]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3881]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3882]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3882]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3883]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3883]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3884]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3884]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3885]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3885]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3886]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3886]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3887]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3887]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3888]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3888]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3889]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3889]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3890]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3890]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3891]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3891]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3892]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3892]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3893]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3893]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3894]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3894]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3895]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3895]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3896]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3896]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3897]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3897]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3898]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3898]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3899]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3899]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3900]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3900]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3901]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3901]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3902]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3902]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3903]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3903]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3904]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3904]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3905]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3905]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3906]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3906]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3907]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3907]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3908]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3908]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3909]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3909]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3910]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3910]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3911]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3911]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3912]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3912]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3913]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3913]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3914]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3914]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3915]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3915]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3916]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3916]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3917]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3917]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3918]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3918]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3919]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3919]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3920]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3920]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3921]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3921]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3922]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3922]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3923]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3923]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3924]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3924]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3925]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3925]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3926]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3926]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3927]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3927]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3928]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3928]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3929]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3929]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3930]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3930]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3931]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3931]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3932]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3932]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3933]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3933]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3934]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3934]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3935]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3935]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3936]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3936]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3937]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3937]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3938]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3938]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3939]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3939]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3940]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3940]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3941]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3941]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3942]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3942]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3943]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3943]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3944]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3944]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3945]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3945]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3946]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3946]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3947]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3947]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3948]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3948]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3949]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3949]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3950]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3950]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3951]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3951]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3952]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3952]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3953]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3953]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3954]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3954]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3955]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3955]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3956]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3956]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3957]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3957]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3958]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3958]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3959]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3959]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3960]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3960]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3961]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3961]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3962]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3962]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3963]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3963]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3964]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3964]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3965]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3965]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3966]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3966]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3967]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3967]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3968]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3968]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3969]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3969]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3970]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3970]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3971]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3971]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3972]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3972]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3973]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3973]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3974]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3974]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3975]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3975]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3976]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3976]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3977]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3977]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3978]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3978]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3979]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3979]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3980]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3980]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3981]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3981]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3982]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3982]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3983]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3983]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3984]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3984]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3985]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3985]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3986]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3986]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3987]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3987]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3988]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3988]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 3989]]} - {:process 2 :type :fail :f :txn :value [[:append 5 3989]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3990]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3990]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 3991]]} - {:process 2 :type :fail :f :txn :value [[:append 6 3991]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3992]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3992]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 3993]]} - {:process 2 :type :fail :f :txn :value [[:append 3 3993]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3994]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3994]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 3995]]} - {:process 2 :type :fail :f :txn :value [[:append 4 3995]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 3996]]} - {:process 2 :type :fail :f :txn :value [[:append 7 3996]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 3997]]} - {:process 2 :type :fail :f :txn :value [[:append 1 3997]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 3998]]} - {:process 2 :type :fail :f :txn :value [[:append 0 3998]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 3999]]} - {:process 2 :type :fail :f :txn :value [[:append 2 3999]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4000]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4000]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4001]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4001]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4002]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4002]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4003]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4003]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4004]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4004]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4005]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4005]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4006]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4006]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4007]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4007]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4008]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4008]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4009]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4009]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4010]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4010]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4011]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4011]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4012]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4012]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4013]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4013]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4014]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4014]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4015]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4015]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4016]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4016]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4017]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4017]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4018]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4018]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4019]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4019]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4020]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4020]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4021]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4021]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4022]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4022]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4023]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4023]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4024]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4024]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4025]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4025]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4026]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4026]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4027]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4027]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4028]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4028]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4029]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4029]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4030]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4030]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4031]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4031]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4032]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4032]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4033]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4033]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4034]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4034]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4035]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4035]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4036]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4036]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4037]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4037]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4038]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4038]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4039]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4039]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4040]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4040]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4041]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4041]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4042]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4042]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4043]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4043]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4044]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4044]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4045]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4045]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4046]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4046]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4047]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4047]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4048]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4048]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4049]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4049]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4050]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4050]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4051]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4051]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4052]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4052]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4053]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4053]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4054]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4054]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4055]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4055]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4056]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4056]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4057]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4057]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4058]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4058]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4059]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4059]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4060]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4060]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4061]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4061]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4062]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4062]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4063]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4063]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4064]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4064]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4065]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4065]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4066]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4066]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4067]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4067]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4068]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4068]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4069]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4069]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4070]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4070]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4071]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4071]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4072]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4072]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4073]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4073]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4074]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4074]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4075]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4075]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4076]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4076]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4077]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4077]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4078]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4078]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4079]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4079]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4080]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4080]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4081]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4081]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4082]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4082]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4083]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4083]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4084]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4084]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4085]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4085]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4086]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4086]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4087]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4087]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4088]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4088]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4089]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4089]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4090]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4090]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4091]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4091]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4092]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4092]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4093]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4093]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4094]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4094]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4095]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4095]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4096]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4096]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4097]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4097]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4098]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4098]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4099]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4099]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4100]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4100]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4101]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4101]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4102]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4102]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4103]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4103]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4104]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4104]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4105]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4105]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4106]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4106]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4107]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4107]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4108]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4108]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4109]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4109]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4110]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4110]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4111]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4111]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4112]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4112]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4113]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4113]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4114]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4114]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4115]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4115]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4116]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4116]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4117]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4117]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4118]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4118]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4119]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4119]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4120]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4120]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4121]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4121]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4122]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4122]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4123]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4123]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4124]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4124]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4125]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4125]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4126]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4126]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4127]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4127]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4128]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4128]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4129]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4129]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4130]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4130]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4131]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4131]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4132]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4132]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4133]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4133]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4134]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4134]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4135]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4135]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4136]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4136]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4137]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4137]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4138]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4138]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4139]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4139]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4140]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4140]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4141]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4141]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4142]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4142]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4143]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4143]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4144]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4144]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4145]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4145]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4146]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4146]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4147]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4147]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4148]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4148]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4149]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4149]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4150]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4150]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4151]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4151]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4152]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4152]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4153]]} - {:process 4 :type :fail :f :txn :value [[:append 3 3317]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4154]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4153]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4155]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4154]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4156]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4156]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4157]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4155]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4157]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4158]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4159]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4158]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4160]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4159]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4161]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4161]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4162]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4160]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4163]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4163]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4164]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4162]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4165]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4165]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4166]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4164]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4167]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4167]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4168]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4166]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4169]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4169]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4170]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4168]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4171]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4171]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4172]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4170]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4173]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4172]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4174]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4174]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4175]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4173]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4175]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4176]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4177]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4177]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4178]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4176]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4179]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4178]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4180]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4179]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4181]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4180]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4182]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4182]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4183]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4183]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4184]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4184]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4185]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4181]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4186]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4185]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4187]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4186]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4188]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4187]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4189]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4189]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4190]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4188]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4191]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4190]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4192]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4192]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4193]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4191]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4194]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4193]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4195]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4195]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4196]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4194]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4196]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4197]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4197]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4198]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4199]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4198]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4200]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4199]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4201]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4201]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4202]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4200]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4203]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4203]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4204]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4202]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4205]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4205]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4206]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4204]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4207]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4206]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4207]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4208]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4209]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4208]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4210]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4209]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4211]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4210]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4212]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4211]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4213]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4213]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4214]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4212]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4215]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4214]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4216]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4215]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4217]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4216]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4218]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4217]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4219]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4219]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4220]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4220]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4221]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4218]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4222]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4222]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4223]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4221]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4224]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4223]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4225]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4225]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4226]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4224]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4227]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4227]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4228]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4226]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4229]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4228]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4230]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4230]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4229]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4231]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4232]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4231]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4233]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4232]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4234]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4234]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4235]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4233]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4236]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4235]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4237]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4236]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4238]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4238]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4239]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4237]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4240]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4239]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4241]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4241]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4242]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4240]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4242]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4243]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4244]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4243]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4245]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4244]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4245]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4246]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4247]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4246]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4248]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4247]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4249]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4248]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4250]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4250]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4251]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4249]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4252]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4251]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4253]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4253]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4254]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4252]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4255]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4254]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4256]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4256]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4257]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4255]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4257]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4258]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4258]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4259]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4260]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4259]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4260]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4261]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4262]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4261]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4263]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4262]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4263]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4264]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4264]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4265]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4266]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4265]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4267]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4267]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4268]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4266]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4269]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4269]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4270]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4268]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4271]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4270]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4272]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4271]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4272]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4273]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4274]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4273]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4275]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4275]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4276]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4274]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4277]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4276]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4278]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4278]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4279]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4277]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4280]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4279]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4281]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4281]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4282]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4280]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4283]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4282]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4284]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4283]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4285]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4284]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4286]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4285]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4287]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4287]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4288]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4286]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4289]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4288]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4289]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4291]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4290]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4291]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4292]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4290]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4293]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4292]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4294]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4294]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4295]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4293]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4296]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4296]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4297]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4295]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4298]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4297]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4299]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4299]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4300]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4298]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4301]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4300]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4302]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4302]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4303]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4301]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4304]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4304]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4305]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4305]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4306]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4303]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4307]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4306]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4308]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4307]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4309]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4308]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4310]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4310]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4311]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4309]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4312]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4312]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4313]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4311]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4314]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4313]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4315]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4314]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4316]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4316]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4317]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4315]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4318]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4317]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4319]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4318]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4320]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4319]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4321]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4320]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4322]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4321]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4323]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4323]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4324]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4322]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4325]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4324]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4326]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4325]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4327]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4326]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4327]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4328]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4329]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4328]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4329]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4330]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4331]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4330]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4332]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4331]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4333]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4332]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4334]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4333]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4335]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4335]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4336]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4334]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4337]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4336]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4338]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4338]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4339]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4337]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4340]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4339]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4341]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4341]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4342]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4340]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4343]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4343]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4344]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4342]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4345]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4345]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4346]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4344]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4347]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4346]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4348]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4348]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4349]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4347]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4350]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4349]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4351]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4351]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4352]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4350]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4353]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4352]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4354]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4353]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4355]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4354]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4356]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4355]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4357]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4357]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4358]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4356]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4359]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4358]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4359]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4361]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4360]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4361]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4362]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4360]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4362]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4363]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4364]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4363]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4365]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4364]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4366]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4365]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4367]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4366]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4368]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4367]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4368]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4370]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4369]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4370]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4371]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4369]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4372]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4371]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4373]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4372]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4374]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4374]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4375]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4373]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4376]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4375]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4377]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4376]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4378]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4377]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4379]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4378]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4379]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4381]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4380]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4381]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4382]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4380]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4382]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4384]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4383]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4384]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4383]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4385]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4386]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4385]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4387]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4387]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4388]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4386]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4389]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4389]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4390]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4388]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4391]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4391]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4392]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4390]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4393]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4392]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4394]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4393]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4395]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4394]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4396]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4396]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4397]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4395]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4398]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4397]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4399]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4398]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4400]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4400]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4401]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4399]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4402]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4402]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4401]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4403]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4404]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4403]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4404]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4406]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4405]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4406]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4407]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4405]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4408]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4407]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4409]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4409]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4410]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4408]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4411]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4410]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4412]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4411]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4413]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4412]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4414]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4413]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4415]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4415]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4416]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4414]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4417]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4417]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4418]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4416]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4419]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4418]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4420]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4419]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4421]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4420]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4422]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4422]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4423]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4421]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4424]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4423]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4424]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4425]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4426]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4425]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4427]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4426]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4428]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4427]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4429]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4428]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4430]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4430]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4431]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4429]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4432]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4431]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4433]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4432]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4434]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4433]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4435]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4435]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4436]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4434]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4437]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4436]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4438]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4438]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4439]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4437]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4440]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4439]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4441]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4441]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4440]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4442]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4443]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4442]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4444]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4443]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4445]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4444]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4446]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4445]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4447]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4446]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4448]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4448]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4449]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4447]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4450]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4449]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4451]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4450]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4452]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4451]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4453]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4452]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4454]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4453]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4455]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4454]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4456]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4456]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4457]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4455]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4457]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4458]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4459]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4458]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4459]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4460]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4461]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4460]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4462]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4461]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4463]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4463]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4464]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4462]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4465]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4464]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4466]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4466]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4465]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4467]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4468]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4467]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4469]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4469]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4470]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4468]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4471]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4471]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4472]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4470]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4473]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4473]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4474]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4472]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4475]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4475]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4476]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4474]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4477]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4477]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4478]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4476]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4479]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4479]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4480]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4480]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4481]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4481]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4482]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4478]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4483]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4482]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4484]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4483]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4485]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4485]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4486]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4484]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4487]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4487]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4488]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4486]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4489]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4488]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4490]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4489]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4491]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4491]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4492]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4490]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4493]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4492]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4494]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4493]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4495]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4494]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4496]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4496]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4497]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4495]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4498]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4497]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4498]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4499]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4500]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4499]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4501]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4500]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4502]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4501]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4503]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4502]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4504]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4503]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4505]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4505]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4506]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4504]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4507]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4506]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4508]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4508]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4509]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4507]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4510]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4509]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4511]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4510]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4512]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4511]]} - {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4513]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4512]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4514]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4513]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4514]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4516]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4516]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4517]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4515]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4517]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4518]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4515]]} - {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4519]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4519]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4520]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4518]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4521]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4521]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4522]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4520]]} - {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 2 4523]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4522]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4524]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4524]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4525]]} - {:process 2 :type :fail :f :txn :value [[:append 2 4523]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4526]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4526]]} - {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 7 4527]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4525]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4528]]} - {:process 2 :type :fail :f :txn :value [[:append 7 4527]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4529]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4529]]} - {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 0 4530]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4528]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4531]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4531]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4532]]} - {:process 2 :type :fail :f :txn :value [[:append 0 4530]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4533]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4533]]} - {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 5 4534]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4532]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4535]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4535]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4536]]} - {:process 2 :type :fail :f :txn :value [[:append 5 4534]]} - {:process 2 :type :invoke :f :txn :value [[:append 4 4537]]} - {:process 2 :type :fail :f :txn :value [[:append 4 4537]]} - {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 6 4538]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4536]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4539]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4539]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4540]]} - {:process 2 :type :fail :f :txn :value [[:append 6 4538]]} - {:process 2 :type :invoke :f :txn :value [[:append 1 4541]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4540]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4542]]} - {:process 2 :type :fail :f :txn :value [[:append 1 4541]]} - {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 2 :type :invoke :f :txn :value [[:append 3 4543]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4542]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4544]]} - {:process 2 :type :fail :f :txn :value [[:append 3 4543]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4544]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4545]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4545]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4546]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4546]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4547]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4547]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4548]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4548]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4549]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4549]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4550]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4550]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4551]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4551]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4552]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4552]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4553]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4553]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4554]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4554]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4555]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4555]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4556]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4556]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4557]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4557]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4558]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4558]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4559]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4559]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4560]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4560]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4561]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4561]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4562]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4562]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4563]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4563]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4564]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4564]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4565]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4565]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4566]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4566]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4567]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4567]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4568]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4568]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4569]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4569]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4570]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4570]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4571]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4571]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4572]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4572]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4573]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4573]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4574]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4574]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4575]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4575]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4576]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4576]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4577]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4577]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4578]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4578]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4579]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4579]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4580]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4580]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4581]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4581]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4582]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4582]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4583]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4583]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4584]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4584]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4585]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4585]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4586]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4586]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4587]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4587]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4588]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4588]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4589]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4589]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4590]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4590]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4591]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4591]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4592]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4592]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4593]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4593]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4594]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4594]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4595]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4595]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4596]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4596]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4597]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4597]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4598]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4598]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4599]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4599]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4600]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4600]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4601]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4601]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4602]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4602]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4603]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4603]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4604]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4604]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4605]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4605]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4606]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4606]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4607]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4607]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4608]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4608]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4609]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4609]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4610]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4610]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4611]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4611]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4612]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4612]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4613]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4613]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4614]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4614]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4615]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4615]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4616]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4616]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4617]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4617]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4618]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4618]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4619]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4619]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4620]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4620]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4621]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4621]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4622]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4622]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4623]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4623]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4624]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4624]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4625]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4625]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4626]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4626]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4627]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4627]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4628]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4628]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4629]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4629]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4630]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4630]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4631]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4631]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4632]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4632]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4633]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4633]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4634]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4634]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4635]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4635]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4636]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4636]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4637]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4637]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4638]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4638]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4639]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4639]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4640]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4640]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4641]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4641]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4642]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4642]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4643]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4643]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4644]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4644]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4645]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4645]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4646]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4646]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4647]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4647]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4648]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4648]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4649]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4649]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4650]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4650]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4651]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4651]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4652]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4652]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4653]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4653]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4654]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4654]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4655]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4655]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4656]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4656]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4657]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4657]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4658]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4658]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4659]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4659]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4660]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4660]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4661]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4661]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4662]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4662]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4663]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4663]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4664]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4664]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4665]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4665]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4666]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4666]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4667]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4667]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4668]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4668]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4669]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4669]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4670]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4670]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4671]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4671]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4672]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4672]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4673]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4673]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4674]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4674]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4675]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4675]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4676]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4676]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4677]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4677]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4678]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4678]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4679]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4679]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4680]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4680]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4681]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4681]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4682]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4682]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4683]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4683]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4684]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4684]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4685]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4685]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4686]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4686]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4687]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4687]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4688]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4688]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4689]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4689]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4690]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4690]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4691]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4691]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4692]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4692]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4693]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4693]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4694]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4694]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4695]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4695]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4696]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4696]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4697]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4697]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4698]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4698]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4699]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4699]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4700]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4700]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4701]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4701]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4702]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4702]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4703]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4703]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4704]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4704]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4705]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4705]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4706]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4706]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4707]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4707]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4708]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4708]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4709]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4709]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4710]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4710]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4711]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4711]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4712]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4712]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4713]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4713]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4714]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4714]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4715]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4715]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4716]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4716]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4717]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4717]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4718]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4718]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4719]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4719]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4720]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4720]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4721]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4721]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4722]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4722]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4723]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4723]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4724]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4724]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4725]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4725]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4726]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4726]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4727]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4727]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4728]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4728]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4729]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4729]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4730]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4730]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4731]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4731]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4732]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4732]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4733]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4733]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4734]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4734]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4735]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4735]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4736]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4736]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4737]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4737]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4738]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4738]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4739]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4739]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4740]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4740]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4741]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4741]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4742]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4742]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4743]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4743]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4744]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4744]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4745]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4745]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4746]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4746]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4747]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4747]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4748]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4748]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4749]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4749]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4750]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4750]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4751]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4751]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4752]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4752]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4753]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4753]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4754]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4754]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4755]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4755]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4756]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4756]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4757]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4757]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4758]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4758]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4759]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4759]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4760]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4760]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4761]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4761]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4762]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4762]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4763]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4763]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4764]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4764]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4765]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4765]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4766]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4766]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4767]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4767]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4768]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4768]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4769]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4769]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4770]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4770]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4771]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4771]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4772]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4772]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4773]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4773]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4774]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4774]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4775]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4775]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4776]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4776]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4777]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4777]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4778]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4778]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4779]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4779]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4780]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4780]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4781]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4781]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4782]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4782]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4783]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4783]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4784]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4784]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4785]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4785]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4786]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4786]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4787]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4787]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4788]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4788]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4789]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4789]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4790]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4790]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4791]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4791]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4792]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4792]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4793]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4793]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4794]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4794]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4795]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4795]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4796]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4796]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4797]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4797]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4798]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4798]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4799]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4799]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4800]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4800]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4801]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4801]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4802]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4802]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4803]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4803]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4804]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4804]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4805]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4805]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4806]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4806]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4807]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4807]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4808]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4808]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4809]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4809]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4810]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4810]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4811]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4811]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4812]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4812]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4813]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4813]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4814]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4814]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4815]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4815]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4816]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4816]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4817]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4817]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4818]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4818]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4819]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4819]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4820]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4820]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4821]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4821]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4822]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4822]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4823]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4823]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4824]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4824]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4825]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4825]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4826]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4826]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4827]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4827]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4828]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4828]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4829]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4829]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4830]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4830]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4831]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4831]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4832]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4832]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4833]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4833]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4834]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4834]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4835]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4835]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4836]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4836]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4837]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4837]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4838]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4838]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4839]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4839]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4840]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4840]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4841]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4841]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4842]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4842]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4843]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4843]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4844]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4844]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4845]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4845]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4846]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4846]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4847]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4847]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4848]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4848]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4849]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4849]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4850]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4850]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4851]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4851]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4852]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4852]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4853]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4853]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4854]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4854]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4855]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4855]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4856]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4856]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4857]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4857]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4858]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4858]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4859]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4859]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4860]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4860]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4861]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4861]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4862]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4862]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4863]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4863]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4864]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4864]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4865]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4865]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4866]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4866]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4867]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4867]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4868]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4868]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4869]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4869]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4870]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4870]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4871]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4871]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4872]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4872]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4873]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4873]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4874]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4874]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4875]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4875]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4876]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4876]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4877]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4877]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4878]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4878]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4879]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4879]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4880]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4880]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4881]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4881]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4882]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4882]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4883]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4883]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4884]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4884]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4885]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4885]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4886]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4886]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4887]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4887]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4888]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4888]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4889]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4889]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4890]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4890]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4891]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4891]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4892]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4892]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4893]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4893]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4894]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4894]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4895]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4895]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4896]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4896]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4897]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4897]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4898]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4898]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4899]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4899]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4900]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4900]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4901]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4901]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4902]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4902]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4903]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4903]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4904]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4904]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4905]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4905]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4906]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4906]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4907]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4907]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4908]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4908]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4909]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4909]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4910]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4910]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4911]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4911]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4912]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4912]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4913]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4913]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4914]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4914]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4915]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4915]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4916]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4916]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4917]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4917]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4918]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4918]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4919]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4919]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4920]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4920]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4921]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4921]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4922]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4922]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4923]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4923]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4924]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4924]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4925]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4925]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4926]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4926]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4927]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4927]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4928]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4928]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4929]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4929]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4930]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4930]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4931]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4931]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4932]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4932]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4933]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4933]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4934]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4934]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4935]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4935]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4936]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4936]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4937]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4937]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4938]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4938]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4939]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4939]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4940]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4940]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4941]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4941]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4942]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4942]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4943]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4943]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4944]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4944]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4945]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4945]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4946]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4946]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4947]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4947]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4948]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4948]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4949]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4949]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4950]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4950]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4951]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4951]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4952]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4952]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4953]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4953]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4954]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4954]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4955]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4955]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4956]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4956]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4957]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4957]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4958]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4958]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4959]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4959]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4960]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4960]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4961]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4961]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4962]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4962]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4963]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4963]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4964]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4964]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4965]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4965]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4966]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4966]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4967]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4967]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4968]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4968]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4969]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4969]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4970]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4970]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4971]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4971]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4972]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4972]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4973]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4973]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4974]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4974]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4975]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4975]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4976]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4976]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4977]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4977]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4978]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4978]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4979]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4979]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4980]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4980]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4981]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4981]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4982]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4982]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4983]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4983]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4984]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4984]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4985]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4985]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4986]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4986]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4987]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4987]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4988]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4988]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4989]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4989]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 4990]]} - {:process 4 :type :fail :f :txn :value [[:append 3 4990]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4991]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4991]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 4992]]} - {:process 4 :type :fail :f :txn :value [[:append 0 4992]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4993]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4993]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 4994]]} - {:process 4 :type :fail :f :txn :value [[:append 5 4994]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 4995]]} - {:process 4 :type :fail :f :txn :value [[:append 4 4995]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 4996]]} - {:process 4 :type :fail :f :txn :value [[:append 2 4996]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 4997]]} - {:process 4 :type :fail :f :txn :value [[:append 1 4997]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 4998]]} - {:process 4 :type :fail :f :txn :value [[:append 7 4998]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 4999]]} - {:process 4 :type :fail :f :txn :value [[:append 6 4999]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 5000]]} - {:process 4 :type :fail :f :txn :value [[:append 4 5000]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 5001]]} - {:process 4 :type :fail :f :txn :value [[:append 3 5001]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 5002]]} - {:process 4 :type :fail :f :txn :value [[:append 1 5002]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 5003]]} - {:process 4 :type :fail :f :txn :value [[:append 0 5003]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 5004]]} - {:process 4 :type :fail :f :txn :value [[:append 6 5004]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 5005]]} - {:process 4 :type :fail :f :txn :value [[:append 5 5005]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 5006]]} - {:process 4 :type :fail :f :txn :value [[:append 3 5006]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 5007]]} - {:process 4 :type :fail :f :txn :value [[:append 2 5007]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 5008]]} - {:process 4 :type :fail :f :txn :value [[:append 0 5008]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 5009]]} - {:process 4 :type :fail :f :txn :value [[:append 7 5009]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 5010]]} - {:process 4 :type :fail :f :txn :value [[:append 5 5010]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 5011]]} - {:process 4 :type :fail :f :txn :value [[:append 4 5011]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 5012]]} - {:process 4 :type :fail :f :txn :value [[:append 2 5012]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 5013]]} - {:process 4 :type :fail :f :txn :value [[:append 1 5013]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 5014]]} - {:process 4 :type :fail :f :txn :value [[:append 7 5014]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 5015]]} - {:process 4 :type :fail :f :txn :value [[:append 6 5015]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 5016]]} - {:process 4 :type :fail :f :txn :value [[:append 4 5016]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 5017]]} - {:process 4 :type :fail :f :txn :value [[:append 3 5017]]} - {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 5018]]} - {:process 4 :type :fail :f :txn :value [[:append 1 5018]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 5019]]} - {:process 4 :type :fail :f :txn :value [[:append 0 5019]]} - {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 5020]]} - {:process 4 :type :fail :f :txn :value [[:append 6 5020]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 5021]]} - {:process 4 :type :fail :f :txn :value [[:append 5 5021]]} - {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 3 5022]]} - {:process 4 :type :fail :f :txn :value [[:append 3 5022]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 5023]]} - {:process 4 :type :fail :f :txn :value [[:append 2 5023]]} - {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 0 5024]]} - {:process 4 :type :fail :f :txn :value [[:append 0 5024]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 5025]]} - {:process 4 :type :fail :f :txn :value [[:append 7 5025]]} - {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 5 5026]]} - {:process 4 :type :fail :f :txn :value [[:append 5 5026]]} - {:process 4 :type :invoke :f :txn :value [[:append 4 5027]]} - {:process 4 :type :fail :f :txn :value [[:append 4 5027]]} - {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 2 5028]]} - {:process 4 :type :fail :f :txn :value [[:append 2 5028]]} - {:process 4 :type :invoke :f :txn :value [[:append 1 5029]]} - {:process 4 :type :fail :f :txn :value [[:append 1 5029]]} - {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 4 :type :invoke :f :txn :value [[:append 7 5030]]} - {:process 4 :type :fail :f :txn :value [[:append 7 5030]]} - {:process 4 :type :invoke :f :txn :value [[:append 6 5031]]} - {:process 4 :type :fail :f :txn :value [[:append 6 5031]]} - {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 2 471]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5032]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5032]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5033]]} - {:process 7 :type :info :f :txn :value [[:append 2 467]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5034]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5033]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5035]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5035]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5036]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5036]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5037]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5034]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5038]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5037]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5039]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5038]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5040]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5039]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5041]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5041]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5042]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5040]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5043]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5043]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5044]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5042]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5045]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5044]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5046]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5046]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5047]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5045]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5048]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5047]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5049]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5049]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5050]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5048]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5051]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5050]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5052]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5051]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5053]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5052]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5054]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5053]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5054]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5055]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5056]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5056]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5057]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5055]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5058]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5058]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5059]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5057]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5060]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5059]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5061]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5060]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5062]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5061]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5063]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5063]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5064]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5062]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5065]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5064]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5065]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5066]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5067]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5067]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5068]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5066]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5069]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5068]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5070]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5069]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5071]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5070]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5072]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5072]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5073]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5073]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5074]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5071]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5075]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5074]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5076]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5076]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5077]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5077]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5078]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5075]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5079]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5078]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5080]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5079]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5081]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5080]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5082]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5081]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5083]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5082]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5084]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5083]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5085]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5084]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5086]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5085]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5087]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5087]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5088]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5086]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5089]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5088]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5090]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5089]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5091]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5090]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5092]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5092]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5093]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5091]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5093]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5095]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5094]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5094]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5096]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5096]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5097]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5095]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5098]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5098]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5099]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5099]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5100]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5100]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5101]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5097]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5102]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5102]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5103]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5103]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5104]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5101]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5105]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5104]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5106]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5105]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5107]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5107]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5108]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5106]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5109]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5108]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5110]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5110]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5111]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5109]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5112]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5111]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5113]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5113]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5114]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5112]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5115]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5114]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5116]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5115]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5117]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5116]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5118]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5118]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5119]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5117]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5120]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5120]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5121]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5119]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5122]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5121]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5123]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5122]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5124]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5123]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5125]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5124]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5125]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5126]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5127]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5126]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5128]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5127]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5129]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5128]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5130]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5129]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5131]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5130]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5132]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5132]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5133]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5131]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5134]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5133]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5135]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5135]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5136]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5134]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5137]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5136]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5138]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5138]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5139]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5137]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5140]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5139]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5141]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5141]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5142]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5140]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5143]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5142]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5144]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5144]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5145]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5143]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5146]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5145]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5147]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5147]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5148]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5146]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5149]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5148]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5150]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5149]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5151]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5150]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5152]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5152]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5153]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5153]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5154]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5154]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5155]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5151]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5156]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5155]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5157]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5156]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5158]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5157]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5159]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5158]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5159]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5161]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5160]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5161]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5162]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5160]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5163]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5162]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5164]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5163]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5165]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5164]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5166]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5166]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5167]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5165]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5168]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5167]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5169]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5169]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5170]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5168]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5171]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5170]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5172]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5171]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5173]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5172]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5174]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5174]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5175]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5173]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5176]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5175]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5177]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5176]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5178]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5177]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5179]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5179]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5180]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5180]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5178]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5181]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5182]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5181]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5183]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5183]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5184]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5182]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5185]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5184]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5186]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5186]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5187]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5185]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5188]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5187]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5189]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5189]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5190]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5188]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5191]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5190]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5192]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5192]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5193]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5191]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5194]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5193]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5195]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5195]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5196]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5194]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5197]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5197]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5198]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5196]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5199]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5199]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5200]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5198]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5201]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5200]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5202]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5202]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5203]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5203]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5204]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5201]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5205]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5204]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5206]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5205]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5207]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5206]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5208]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5207]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5209]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5208]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5210]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5210]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5211]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5209]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5212]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5212]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5213]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5211]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5214]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5214]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5215]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5213]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5216]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5216]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5217]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5215]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5218]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5217]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5219]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5218]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5220]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5220]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5221]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5219]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5222]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5221]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5223]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5222]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5224]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5223]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5225]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5224]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5225]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5226]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5227]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5226]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5228]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5228]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5229]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5227]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5230]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5230]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5229]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5231]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5232]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5231]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5233]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5232]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5234]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5233]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5235]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5234]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5235]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5236]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5237]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5236]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5238]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5237]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5238]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5239]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5240]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5240]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5241]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5239]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5242]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5241]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5243]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5243]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5244]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5242]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5245]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5244]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5246]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5245]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5247]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5246]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5248]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5247]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5249]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5248]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5250]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5250]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5251]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5249]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5252]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5251]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5253]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5253]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5254]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5252]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5255]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5254]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5256]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5256]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5257]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5257]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5258]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5255]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5259]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5259]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5260]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5260]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5261]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5258]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5262]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5262]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5263]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5261]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5264]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5263]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5265]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5265]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5266]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5264]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5267]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5267]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5266]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5268]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5269]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5269]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5270]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5268]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5271]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5270]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5272]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5271]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5273]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5272]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5274]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5274]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5275]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5273]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5276]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5275]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5277]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5277]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5278]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5276]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5279]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5278]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5280]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5280]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5281]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5279]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5282]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5282]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5283]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5281]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5284]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5283]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5285]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5284]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5286]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5285]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5287]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5286]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5288]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5287]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5289]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5289]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5290]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5288]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5291]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5290]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5292]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5292]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5293]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5291]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5293]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5294]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5295]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5294]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5296]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5295]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5297]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5297]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5298]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5298]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5299]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5296]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5300]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5300]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5301]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5299]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5302]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5302]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5303]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5301]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5304]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5303]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5305]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5304]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5306]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5305]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5307]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5307]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5308]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5306]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5309]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5308]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5310]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5310]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5311]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5309]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5312]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5311]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5313]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5313]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5314]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5312]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5315]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5314]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5316]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5316]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5317]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5315]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5318]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5317]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5319]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5319]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5320]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5318]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5321]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5321]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5322]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5322]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5323]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5323]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5324]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5320]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5325]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5324]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5326]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5325]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5327]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5326]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5327]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5328]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5329]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5328]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5330]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5329]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5331]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5330]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5332]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5331]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5333]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5332]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5334]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5334]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5335]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5333]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5336]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5336]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5337]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5335]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5338]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5337]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5339]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5338]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5340]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5339]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5341]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5340]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5342]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5342]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5343]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5341]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5344]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5343]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5345]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5345]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5346]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5344]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5347]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5346]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5348]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5348]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5349]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5347]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5350]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5349]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5350]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5351]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5352]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5351]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5353]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5352]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5354]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5354]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5355]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5353]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5356]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5355]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5357]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5356]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5358]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5357]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5359]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5359]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5360]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5360]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5361]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5358]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5362]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5361]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5363]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5362]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5364]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5363]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5365]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5364]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5366]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5366]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5367]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5365]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5368]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5367]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5369]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5369]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5370]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5368]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5371]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5370]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5372]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5372]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5373]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5371]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5374]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5374]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5375]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5373]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5376]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5375]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5377]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5377]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5378]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5376]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5379]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5378]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5380]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5380]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5381]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5379]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5382]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5381]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5383]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5382]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5384]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5383]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5385]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5384]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5386]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5386]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5387]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5385]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5388]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5387]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5389]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5388]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5390]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5389]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5391]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5391]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5392]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5390]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5393]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5393]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5394]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5392]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5395]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5394]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5396]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5395]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5397]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5396]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5397]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5399]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5398]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5399]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5400]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5398]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5401]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5400]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5402]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5401]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5403]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5402]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5404]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5403]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5405]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5404]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5406]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5405]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5407]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5406]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5408]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5407]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5409]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5408]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5410]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5409]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5411]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5410]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5412]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5411]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5413]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5412]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5414]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5414]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5415]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5413]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5416]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5416]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5417]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5415]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5418]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5418]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5419]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5417]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5419]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5420]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5421]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5420]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5422]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5421]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5423]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5423]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5424]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5422]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5425]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5424]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5426]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5425]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5426]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5427]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5428]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5427]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5429]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5428]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5430]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5429]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5431]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5431]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5432]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5430]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5433]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5433]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5434]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5432]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5435]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5434]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5436]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5436]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5437]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5435]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5438]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5438]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5439]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5437]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5439]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5440]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5441]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5440]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5442]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5441]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5443]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5442]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5444]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5443]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5445]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5444]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5446]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5445]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5447]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5446]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5448]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5448]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5449]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5447]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5449]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5450]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5451]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5450]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5452]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5451]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5453]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5452]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5454]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5453]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5455]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5455]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5456]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5454]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5457]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5456]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5458]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5458]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5459]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5457]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5460]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5460]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5461]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5459]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5461]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5462]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5463]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5462]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5464]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5463]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5465]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5464]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5466]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5465]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5467]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5466]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5468]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5467]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5469]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5469]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5470]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5468]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5471]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5471]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5472]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5470]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5473]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5472]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5474]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5473]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5475]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5474]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5476]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5475]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5477]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5476]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5478]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5477]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5479]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5478]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5480]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5479]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5481]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5480]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5482]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5481]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5483]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5482]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5484]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5483]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5485]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5484]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5486]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5485]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5487]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5486]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5488]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5487]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5489]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5489]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5490]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5488]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5491]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5490]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5492]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5491]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5493]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5492]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5494]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5493]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5495]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5494]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5496]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5495]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5497]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5497]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5498]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5496]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5499]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5498]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5500]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5499]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5501]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5501]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5502]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5500]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5503]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5502]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5504]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5503]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5505]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5504]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5506]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5505]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5507]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5506]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5508]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5507]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5509]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5508]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5510]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5509]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5511]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5510]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5512]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5511]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5513]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5512]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5514]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5513]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5515]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5514]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5516]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5515]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5517]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5516]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5518]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5517]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5519]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5518]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5520]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5519]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5520]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5522]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5521]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5522]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5523]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5521]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5524]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5523]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5525]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5524]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5526]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5525]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5527]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5526]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5528]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5528]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5529]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5527]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5530]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5529]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5531]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5531]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5532]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5530]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5533]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5532]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5534]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5533]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5535]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5534]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5536]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5535]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5537]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5536]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5538]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5538]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5539]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5537]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5540]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5539]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5541]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5541]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5542]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5540]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5543]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5543]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5544]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5542]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5545]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5544]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5546]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5545]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5547]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5546]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5548]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5547]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5549]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5548]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5550]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5549]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5551]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5550]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5552]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5551]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5553]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5552]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5554]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5554]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5555]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5553]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5556]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5555]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5557]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5557]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5558]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5558]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5559]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5556]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5560]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5560]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5561]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5559]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5562]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5561]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5563]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5563]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5564]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5562]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5565]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5565]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5566]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5564]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5567]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5566]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5568]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5567]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5569]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5568]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5569]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5571]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5570]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5571]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5572]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5570]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5573]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5572]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5574]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5573]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5575]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5574]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5575]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5577]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5576]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5577]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5578]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5576]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5579]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5578]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5580]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5579]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5581]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5580]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5582]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5581]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5583]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5582]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5584]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5583]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5585]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5584]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5586]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5585]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5587]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5586]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5588]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5588]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5589]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5587]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5589]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5591]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5590]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5591]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5592]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5590]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5593]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5592]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5594]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5593]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5595]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5594]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5596]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5595]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5597]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5596]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5598]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5597]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5598]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5599]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5600]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5599]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5601]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5601]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5602]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5602]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5603]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5600]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5604]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5604]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5605]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5603]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5605]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5606]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5607]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5606]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5608]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5607]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5609]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5608]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5610]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5609]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5610]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5611]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5612]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5611]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5613]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5612]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5614]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5614]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5615]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5613]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5616]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5615]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5617]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5617]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5618]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5618]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5619]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5619]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5620]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5616]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5621]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5620]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5622]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5621]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5623]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5622]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5624]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5623]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5625]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5624]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5626]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5625]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5627]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5626]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5628]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5627]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5629]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5628]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5630]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5630]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5631]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5629]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5631]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5632]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5632]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5633]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5634]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5633]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5634]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5635]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5636]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5635]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5636]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5637]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5638]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5637]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5639]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5638]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5640]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5639]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5641]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5640]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5642]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5641]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5643]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5642]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5644]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5643]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5645]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5644]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5646]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5645]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5647]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5646]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5648]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5647]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5649]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5648]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5650]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5649]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5651]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5650]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5652]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5652]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5653]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5651]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5654]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5653]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5655]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5654]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5656]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5655]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5657]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5656]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5658]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5657]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5659]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5659]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5660]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5658]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5661]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5660]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5662]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5661]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5663]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5662]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5664]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5663]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5665]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5665]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5666]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5664]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5667]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5666]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5668]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5668]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5669]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5667]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5670]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5669]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5671]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5670]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5672]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5671]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5673]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5672]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5674]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5673]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5675]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5674]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5676]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5675]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5677]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5676]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5678]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5677]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5679]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5678]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5680]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5679]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5681]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5680]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5682]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5681]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5683]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5682]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5684]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5684]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5685]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5683]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5685]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5686]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5687]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5686]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5688]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5687]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5689]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5688]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5690]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5689]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5691]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5690]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5692]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5692]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5693]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5691]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5694]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5693]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5695]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5694]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5696]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5695]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5697]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5696]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5698]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5697]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5699]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5698]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5700]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5700]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5701]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5699]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5702]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5702]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5703]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5701]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5703]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5704]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5705]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5704]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5706]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5705]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5707]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5706]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5708]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5707]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5708]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5709]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5710]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5709]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5711]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5710]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5712]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5711]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5713]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5713]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5714]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5712]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5715]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5714]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5716]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5716]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5717]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5715]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5718]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5718]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5719]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5717]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5720]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5720]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5721]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5719]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5722]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5722]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5723]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5721]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5724]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5723]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5725]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5724]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5726]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5725]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5727]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5726]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5728]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5727]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5729]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5728]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5730]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5729]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5731]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5730]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5732]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5731]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5733]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5732]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5734]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5734]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5735]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5733]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5736]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5735]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5737]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5737]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5738]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5736]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5739]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5738]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5740]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5739]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5741]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5740]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5742]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5741]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5743]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5742]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5744]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5743]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5745]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5744]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5746]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5745]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5747]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5746]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5748]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5747]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5749]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5748]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5749]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5751]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5750]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5751]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5752]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5750]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5753]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5752]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5754]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5753]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5754]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5755]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5756]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5755]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5757]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5756]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5758]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5757]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5759]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5758]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5760]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5759]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5761]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5760]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5762]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5761]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5763]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5762]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5764]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5763]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5765]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5764]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5766]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5765]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5766]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5767]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5768]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5767]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5769]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5769]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5770]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5768]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5771]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5770]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5772]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5771]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5773]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5772]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5774]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5773]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5775]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5774]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5776]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5775]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5777]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5776]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5778]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5777]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5779]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5778]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5780]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5779]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5781]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5781]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5782]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5780]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5782]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5783]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5784]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5783]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5785]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5784]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5786]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5785]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5786]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5787]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5788]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5787]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5789]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5788]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5790]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5789]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5791]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5790]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5792]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5791]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5793]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5792]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5794]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5793]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5794]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5795]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5796]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5795]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5797]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5796]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5798]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5797]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5798]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5799]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5800]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5799]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5801]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5801]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5802]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5800]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5803]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5802]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5804]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5803]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5805]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5805]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5806]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5804]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5806]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5807]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5808]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5807]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5809]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5808]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5810]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5810]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5811]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5809]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5811]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5813]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5812]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5813]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5814]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5812]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5815]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5814]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5816]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5816]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5817]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5815]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5817]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5818]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5819]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5818]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5820]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5819]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5821]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5820]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5822]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5821]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5823]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5822]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5824]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5823]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5825]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5824]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5826]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5825]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5827]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5826]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5828]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5827]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5829]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5828]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5830]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5829]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5831]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5830]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5832]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5831]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5833]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5833]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5834]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5832]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5835]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5834]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5836]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5835]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5837]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5836]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5838]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5837]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5839]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5838]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5840]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5839]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5841]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5840]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5842]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5841]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5843]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5842]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5844]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5843]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5845]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5845]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5846]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5844]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5847]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5847]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5848]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5846]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5849]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5848]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5850]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5849]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5851]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5851]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5852]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5850]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5853]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5852]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5854]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5853]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5855]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5854]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5856]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5855]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5857]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5856]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5858]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5857]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5859]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5858]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5860]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5859]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5861]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5860]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5862]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5861]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5863]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5862]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5863]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5864]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5865]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5864]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5866]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5866]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5867]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5865]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5868]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5868]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5869]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5867]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5869]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5870]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5871]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5870]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5872]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5871]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5873]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5872]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5874]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5874]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5875]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5873]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5876]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5876]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5877]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5875]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5878]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5878]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5879]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5877]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5880]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5880]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5881]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5879]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5882]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5881]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5883]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5883]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5884]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5882]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5885]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5885]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5886]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5884]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5887]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5886]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5888]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5887]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5889]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5888]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5890]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5889]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5891]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5890]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5892]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5891]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5892]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5893]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5894]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5893]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5895]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5894]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5896]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5895]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5897]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5896]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5898]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5897]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5899]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5899]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5900]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5898]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5901]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5901]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5902]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5900]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5903]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5903]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5904]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5902]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5905]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5904]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5906]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5905]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5907]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5906]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5908]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5907]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5909]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5908]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5910]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5909]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5911]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5910]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5912]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5911]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5913]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5912]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5914]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5914]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5915]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5913]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5915]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5916]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5917]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5916]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5918]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5917]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5919]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5918]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5919]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5920]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5921]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5920]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5922]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5922]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5923]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5921]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5924]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5923]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5925]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5924]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5926]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5926]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5927]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5925]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5928]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5928]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5929]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5927]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5930]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5930]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5931]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5929]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5932]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5932]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5933]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5931]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5934]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5934]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5935]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5933]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5936]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5936]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5937]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5935]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5937]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5939]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5938]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5939]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5940]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5938]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5941]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5940]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5942]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5941]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5942]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5943]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5944]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5943]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5945]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5944]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5946]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5945]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5947]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5946]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5948]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5947]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5949]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5948]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5950]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5949]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5951]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5950]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5952]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5951]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5953]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5953]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5954]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5952]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5955]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5955]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5956]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5954]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5957]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5956]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5958]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5958]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5959]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5957]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5960]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5960]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5961]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5959]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5962]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5962]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5963]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5961]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5964]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5964]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5965]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5963]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5966]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5966]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5967]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5965]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5968]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5968]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5969]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5967]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5970]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5970]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5971]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5969]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5971]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5972]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5973]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5972]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5974]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5973]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5975]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5974]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 5976]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5975]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5977]]} - {:process 5 :type :fail :f :txn :value [[:append 2 5976]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5978]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5977]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5979]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5978]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 5980]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5979]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5981]]} - {:process 5 :type :fail :f :txn :value [[:append 1 5980]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5982]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5981]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 5983]]} - {:process 7 :type :fail :f :txn :value [[:append 2 5983]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5984]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5984]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 5985]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5982]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 5986]]} - {:process 5 :type :fail :f :txn :value [[:append 4 5986]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 5987]]} - {:process 7 :type :fail :f :txn :value [[:append 5 5985]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5988]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5988]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 5989]]} - {:process 5 :type :fail :f :txn :value [[:append 5 5987]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 5990]]} - {:process 7 :type :fail :f :txn :value [[:append 0 5989]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5991]]} - {:process 5 :type :fail :f :txn :value [[:append 3 5990]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 5992]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5991]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 5993]]} - {:process 5 :type :fail :f :txn :value [[:append 0 5992]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 5994]]} - {:process 7 :type :fail :f :txn :value [[:append 3 5993]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 5995]]} - {:process 7 :type :fail :f :txn :value [[:append 4 5995]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 5996]]} - {:process 5 :type :fail :f :txn :value [[:append 6 5994]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 5997]]} - {:process 7 :type :fail :f :txn :value [[:append 6 5996]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 5998]]} - {:process 7 :type :fail :f :txn :value [[:append 7 5998]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 5999]]} - {:process 7 :type :fail :f :txn :value [[:append 1 5999]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6000]]} - {:process 5 :type :fail :f :txn :value [[:append 7 5997]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6001]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6000]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6002]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6001]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6003]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6003]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6004]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6002]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6005]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6004]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6006]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6005]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6007]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6006]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6008]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6007]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6009]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6009]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6010]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6008]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6011]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6011]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6012]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6010]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6013]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6012]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6014]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6014]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6015]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6013]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6016]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6015]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6017]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6017]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6018]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6016]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6019]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6018]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6020]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6020]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6021]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6019]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6022]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6021]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6023]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6022]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6024]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6023]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6025]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6024]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6026]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6025]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6027]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6026]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6028]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6027]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6029]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6029]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6030]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6028]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6031]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6031]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6032]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6030]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6033]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6032]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6033]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6034]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6035]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6034]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6036]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6035]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6037]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6036]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6038]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6037]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6039]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6038]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6040]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6039]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6041]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6040]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6042]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6041]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6043]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6042]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6044]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6043]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6045]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6044]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6046]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6045]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6047]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6046]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6047]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6048]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6049]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6048]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6050]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6049]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6051]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6050]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6052]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6052]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6053]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6051]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6054]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6053]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6055]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6055]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6056]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6054]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6057]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6057]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6058]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6056]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6059]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6058]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6060]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6059]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6061]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6060]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6062]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6061]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6063]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6062]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6064]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6064]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6065]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6063]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6066]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6065]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6067]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6066]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6068]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6067]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6069]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6068]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6070]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6069]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6071]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6070]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6072]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6071]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6073]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6072]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6074]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6073]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6075]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6074]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6076]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6075]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6077]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6076]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6078]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6077]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6079]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6078]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6080]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6079]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6081]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6080]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6082]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6081]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6083]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6082]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6084]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6084]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6085]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6083]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6085]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6086]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6087]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6086]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6088]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6087]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6089]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6088]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6089]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6090]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6091]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6091]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6092]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6090]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6093]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6092]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6094]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6093]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6095]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6094]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6096]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6096]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6097]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6095]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6098]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6098]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6099]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6097]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6100]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6099]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6101]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6100]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6102]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6101]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6103]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6102]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6104]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6103]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6105]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6104]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6106]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6105]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6107]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6106]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6108]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6107]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6109]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6108]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6110]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6110]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6111]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6109]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6112]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6111]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6113]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6113]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6114]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6112]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6115]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6114]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6116]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6116]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6117]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6115]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6118]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6117]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6119]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6119]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6120]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6118]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6121]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6121]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6122]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6120]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6123]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6122]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6124]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6123]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6125]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6124]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6126]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6126]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6127]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6125]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6128]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6128]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6129]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6127]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6129]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6130]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6131]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6130]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6132]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6131]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6133]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6132]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6134]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6133]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6135]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6134]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6136]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6135]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6137]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6136]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6138]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6137]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6139]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6138]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6140]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6139]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6141]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6140]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6142]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6141]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6143]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6142]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6144]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6143]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6145]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6144]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6146]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6145]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6147]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6146]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6147]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6148]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6149]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6148]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6149]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6150]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6151]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6150]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6152]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6151]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6153]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6153]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6154]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6152]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6154]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6155]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6156]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6155]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6157]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6156]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6158]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6157]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6158]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6159]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6160]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6159]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6161]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6161]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6162]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6160]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6163]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6162]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6164]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6163]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6165]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6164]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6166]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6165]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6167]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6166]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6168]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6167]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6169]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6168]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6170]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6169]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6171]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6170]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6172]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6171]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6173]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6172]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6174]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6174]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6175]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6173]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6176]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6176]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6177]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6175]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6177]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6178]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6179]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6178]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6180]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6180]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6181]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6179]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6182]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6181]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6183]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6182]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6184]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6184]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6185]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6183]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6186]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6185]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6187]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6187]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6188]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6186]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6189]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6189]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6190]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6188]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6191]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6190]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6192]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6191]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6193]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6192]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6194]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6194]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6195]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6193]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6196]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6196]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6197]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6195]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6197]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6198]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6199]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6198]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6200]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6199]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6201]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6200]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6202]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6201]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6202]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6203]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6203]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6204]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6204]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6205]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6206]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6206]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6207]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6205]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6208]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6207]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6209]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6208]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6210]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6209]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6211]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6210]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6212]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6211]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6212]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6213]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6214]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6213]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6215]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6214]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6216]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6215]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6217]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6216]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6218]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6217]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6219]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6218]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6220]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6219]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6221]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6220]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6222]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6221]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6223]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6223]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6224]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6222]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6225]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6224]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6226]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6225]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6227]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6226]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6228]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6227]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6229]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6229]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6230]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6230]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6231]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6228]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6232]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6232]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6233]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6231]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6234]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6234]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6235]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6233]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6236]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6236]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6237]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6235]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6238]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6237]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6239]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6238]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6240]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6239]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6240]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6242]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6241]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6242]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6243]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6241]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6244]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6243]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6245]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6244]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6246]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6245]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6247]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6246]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6248]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6247]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6249]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6248]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6250]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6249]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6251]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6250]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6252]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6252]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6253]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6251]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6253]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6254]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6255]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6254]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6255]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6257]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6256]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6257]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6258]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6256]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6259]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6259]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6260]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6258]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6260]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6261]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6262]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6261]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6263]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6262]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6264]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6263]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6265]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6265]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6266]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6264]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6267]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6266]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6268]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6267]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6268]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6269]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6270]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6269]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6271]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6270]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6272]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6271]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6272]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6273]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6274]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6273]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6275]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6274]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6276]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6275]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6277]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6276]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6278]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6277]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6279]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6278]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6280]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6280]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6281]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6279]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6282]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6281]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6283]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6283]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6284]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6282]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6285]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6284]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6286]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6285]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6287]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6286]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6288]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6288]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6289]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6287]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6290]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6290]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6291]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6289]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6292]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6292]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6293]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6293]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6294]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6291]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6295]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6295]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6296]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6294]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6297]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6296]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6298]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6297]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6299]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6298]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6300]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6299]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6301]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6300]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6302]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6301]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6303]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6302]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6304]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6303]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6305]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6304]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6306]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6305]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6307]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6307]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6308]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6306]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6309]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6308]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6310]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6309]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6311]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6310]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6312]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6311]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6312]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6313]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6314]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6313]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6315]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6314]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6316]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6315]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6317]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6317]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6316]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6318]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6319]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6318]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6320]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6320]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6321]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6321]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6322]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6319]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6323]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6322]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6324]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6323]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6325]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6324]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6326]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6325]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6327]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6327]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6328]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6326]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6329]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6328]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6330]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6329]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6331]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6330]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6332]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6331]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6333]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6332]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6334]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6333]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6335]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6334]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6336]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6335]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6337]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6336]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6338]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6337]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6339]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6338]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6340]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6339]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6341]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6340]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6342]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6341]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6343]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6342]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6344]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6344]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6345]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6343]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6346]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6346]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6347]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6345]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6348]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6347]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6349]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6349]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6350]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6348]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6351]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6350]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6352]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6351]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6353]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6352]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6354]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6353]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6355]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6355]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6356]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6354]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6357]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6357]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6358]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6356]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6359]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6358]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6360]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6359]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6360]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6361]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6362]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6361]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6363]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6362]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6364]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6363]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6364]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6365]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6366]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6365]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6367]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6366]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6368]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6367]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6369]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6368]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6370]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6369]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6371]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6370]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6372]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6372]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6373]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6371]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6374]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6373]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6374]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6375]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6376]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6375]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6377]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6376]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6377]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6379]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6378]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6379]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6380]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6378]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6381]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6380]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6382]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6381]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6383]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6382]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6384]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6383]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6385]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6384]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6386]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6385]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6387]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6386]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6388]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6387]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6389]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6389]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6390]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6388]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6391]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6391]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6392]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6390]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6393]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6392]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6394]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6393]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6395]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6394]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6396]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6395]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6397]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6396]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6398]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6398]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6399]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6397]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6399]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6400]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6401]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6400]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6402]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6401]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6403]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6402]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6404]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6403]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6405]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6404]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6406]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6405]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6407]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6406]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6408]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6407]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6409]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6408]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6410]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6409]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6411]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6410]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6412]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6411]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6413]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6412]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6414]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6413]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6415]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6414]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6416]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6415]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6417]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6416]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6418]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6417]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6419]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6418]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6420]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6420]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6421]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6419]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6422]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6422]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6423]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6421]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6424]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6424]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6425]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6423]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6425]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6426]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6427]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6426]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6428]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6427]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6429]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6428]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6430]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6429]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6431]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6430]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6431]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6432]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6433]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6432]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6434]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6433]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6435]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6434]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6436]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6435]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6437]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6436]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6438]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6437]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6439]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6438]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6440]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6439]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6441]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6440]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6442]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6441]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6443]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6442]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6444]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6443]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6445]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6444]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6446]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6445]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6447]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6446]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6448]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6447]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6449]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6448]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6450]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6449]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6451]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6450]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6452]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6451]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6453]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6453]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6454]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6452]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6455]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6455]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6456]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6454]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6457]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6456]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6458]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6457]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6459]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6459]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6460]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6458]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6461]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6460]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6462]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6461]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6463]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6462]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6464]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6463]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6465]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6464]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6466]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6465]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6467]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6466]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6468]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6467]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6469]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6468]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6470]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6470]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6471]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6469]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6471]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6472]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6473]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6472]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6474]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6473]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6475]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6475]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6476]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6474]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6477]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6477]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6478]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6476]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6479]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6479]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6480]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6478]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6481]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6480]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6482]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6481]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6483]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6482]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6484]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6483]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6485]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6484]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6486]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6485]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6487]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6487]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6488]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6486]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6489]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6488]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6490]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6489]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6491]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6491]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6492]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6490]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6493]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6493]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6494]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6492]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6495]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6494]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6496]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6496]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6497]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6495]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6498]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6498]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6499]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6497]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6500]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6500]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6501]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6499]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6502]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6502]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6503]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6501]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6503]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6504]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6505]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6504]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6506]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6506]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6507]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6505]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6507]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6508]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6509]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6508]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6510]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6509]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6511]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6510]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6512]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6511]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6513]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6512]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6514]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6513]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6515]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6514]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6516]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6515]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6517]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6516]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6518]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6518]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6519]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6517]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6520]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6519]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6521]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6521]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6522]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6520]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6523]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6523]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6524]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6522]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6525]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6524]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6526]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6525]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6527]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6527]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6528]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6528]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6529]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6526]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6530]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6530]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6531]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6529]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6532]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6532]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6533]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6531]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6534]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6533]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6535]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6535]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6536]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6534]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6537]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6537]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6538]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6536]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6539]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6538]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6540]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6539]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6541]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6540]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6541]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6543]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6542]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6543]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6544]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6544]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6545]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6545]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6546]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6542]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6547]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6546]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6548]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6547]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6549]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6548]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6550]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6549]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6551]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6551]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6552]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6552]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6553]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6553]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6554]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6550]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6555]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6554]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6556]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6556]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6557]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6555]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6557]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6558]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6559]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6558]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6560]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6559]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6561]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6561]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6562]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6562]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6563]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6560]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6564]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6564]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6565]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6563]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6566]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6566]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6567]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6565]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6568]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6567]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6569]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6568]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6570]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6569]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6571]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6570]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6572]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6571]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6573]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6573]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6574]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6572]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6575]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6575]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6576]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6574]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6577]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6577]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6578]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6578]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6579]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6576]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6580]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6580]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6581]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6579]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6582]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6582]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6583]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6581]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6584]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6584]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6585]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6583]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6586]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6586]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6587]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6585]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6588]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6588]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6589]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6589]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6590]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6590]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6591]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6587]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6592]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6591]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6593]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6593]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6594]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6592]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6595]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6594]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6596]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6595]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6596]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6597]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6598]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6597]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6599]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6598]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6600]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6599]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6600]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6602]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6601]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6602]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6603]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6601]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6604]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6604]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6605]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6605]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6606]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6603]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6607]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6607]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6608]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6606]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6609]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6609]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6610]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6610]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6611]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6608]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6612]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6612]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6613]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6611]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6614]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6614]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6615]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6613]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6616]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6615]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6617]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6617]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6618]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6616]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6619]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6618]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6620]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6619]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6621]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6620]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6622]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6622]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6623]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6621]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6624]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6624]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6625]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6623]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6626]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6626]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6627]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6625]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6628]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6628]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6629]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6627]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6630]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6630]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6631]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6629]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6632]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6632]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6633]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6631]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6634]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6633]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6635]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6634]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6636]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6635]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6637]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6636]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6638]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6637]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6639]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6639]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6640]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6638]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6641]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6641]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6642]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6640]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6643]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6642]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6644]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6643]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6645]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6644]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6645]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6647]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6646]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6647]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6648]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6648]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6649]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6649]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6650]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6646]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6651]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6650]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6652]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6651]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6652]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6653]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6654]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6654]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6655]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6653]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6656]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6656]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6657]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6655]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6658]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6658]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6659]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6657]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6660]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6659]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6661]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6660]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6662]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6661]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6663]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6662]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6664]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6664]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6663]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6666]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6665]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6666]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6667]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6665]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6668]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6667]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6669]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6668]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6669]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6670]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6671]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6670]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6672]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6671]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6673]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6672]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6674]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6673]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6675]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6675]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6676]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6674]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6677]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6676]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6678]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6677]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6679]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6678]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6680]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6679]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6681]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6680]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6682]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6681]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6683]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6682]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6684]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6683]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6685]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6685]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6686]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6684]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6686]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6687]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6688]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6687]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6689]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6689]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6690]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6688]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6691]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6690]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6692]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6691]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6692]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6693]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6694]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6693]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6695]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6694]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6696]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6695]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6697]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6696]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6698]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6697]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6699]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6698]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6700]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6699]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6701]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6700]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6702]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6701]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6703]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6702]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6704]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6703]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6705]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6704]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6706]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6705]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6707]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6707]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6708]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6706]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6709]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6708]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6710]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6709]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6711]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6710]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6712]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6711]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6713]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6712]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6714]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6713]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6714]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6715]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6715]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6716]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6717]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6717]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6718]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6718]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6719]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6716]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6720]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6720]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6721]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6719]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6722]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6722]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6723]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6721]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6724]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6724]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6725]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6723]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6726]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6726]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6727]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6725]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6727]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6728]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6729]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6728]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6730]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6729]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6731]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6730]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6731]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6732]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6733]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6732]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6734]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6734]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6735]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6733]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6735]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6737]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6736]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6737]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6738]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6736]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6739]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6738]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6740]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6739]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6741]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6740]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6742]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6741]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6743]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6742]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6744]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6743]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6745]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6744]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6746]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6745]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6747]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6747]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6748]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6746]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6749]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6748]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6750]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6750]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6751]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6751]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6752]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6749]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6753]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6753]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6754]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6752]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6755]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6754]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6756]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6755]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6757]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6757]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6758]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6756]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6759]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6759]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6760]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6758]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6761]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6760]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6762]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6761]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6763]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6762]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6764]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6763]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6765]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6765]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6766]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6764]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6767]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6767]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6768]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6766]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6769]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6769]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6770]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6768]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6771]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6770]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6772]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6771]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6773]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6772]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6773]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6774]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6775]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6774]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6776]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6775]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6777]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6776]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6778]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6777]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6779]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6778]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6780]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6779]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6781]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6780]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6782]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6781]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6783]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6783]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6784]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6782]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6785]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6785]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6786]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6784]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6787]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6786]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6788]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6788]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6789]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6787]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6790]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6790]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6791]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6789]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6792]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6791]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6793]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6793]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6794]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6792]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6795]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6794]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6796]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6795]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6797]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6796]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6798]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6797]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6799]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6798]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6800]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6799]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6800]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6801]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6802]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6801]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6803]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6802]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6804]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6804]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6805]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6803]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6806]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6806]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6807]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6805]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6808]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6808]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6809]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6807]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6810]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6810]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6811]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6809]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6812]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6812]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6813]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6811]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6814]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6814]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6815]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6813]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6816]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6816]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6817]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6815]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6818]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6818]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6819]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6817]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6820]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6820]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6821]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6819]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6822]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6822]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6823]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6821]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6824]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6824]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6825]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6823]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6826]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6826]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6827]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6825]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6828]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6828]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6829]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6827]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6829]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6830]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6831]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6830]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6832]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6831]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6833]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6832]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6834]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6834]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6835]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6833]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6836]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6835]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6837]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6836]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6838]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6837]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6839]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6839]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6840]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6838]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6841]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6840]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6842]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6841]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6843]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6842]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6844]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6844]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6845]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6843]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6846]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6846]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6847]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6845]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6848]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6847]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6848]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6849]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6850]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6849]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6851]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6850]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6852]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6852]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6853]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6851]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6854]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6854]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6855]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6853]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6856]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6856]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6857]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6855]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6857]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6859]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6858]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6859]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6860]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6858]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6861]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6860]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6862]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6861]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6863]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6862]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6864]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6863]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6865]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6864]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6866]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6865]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6866]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6867]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6868]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6867]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6869]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6868]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6870]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6869]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6871]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6870]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6872]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6871]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6873]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6872]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6874]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6873]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6875]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6874]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6876]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6875]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6877]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6876]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6878]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6878]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6879]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6877]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6880]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6879]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6881]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6880]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6882]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6881]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6883]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6882]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6884]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6883]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6885]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6884]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6886]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6885]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6887]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6886]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6888]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6887]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6889]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6888]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6890]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6889]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6891]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6890]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6892]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6891]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6893]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6892]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6894]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6893]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6895]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6894]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6896]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6895]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6897]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6896]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6898]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6897]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6899]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6898]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6900]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6899]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6901]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6900]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6902]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6901]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6903]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6903]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6904]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6902]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6905]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6905]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6906]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6904]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6907]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6906]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6908]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6908]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6909]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6907]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6910]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6910]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6911]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6909]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6912]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6911]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6913]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6912]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6914]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6913]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6915]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6914]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6916]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6915]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6917]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6916]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6918]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6918]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6919]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6917]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6920]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6919]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6921]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6921]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6922]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6920]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6923]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6922]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6924]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6924]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6925]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6925]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6926]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6926]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6927]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6923]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6928]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6927]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6929]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6928]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6930]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6929]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6931]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6930]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6932]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6931]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6933]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6932]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6934]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6934]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6935]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6933]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6936]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6936]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6937]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6935]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6938]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6937]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6939]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6938]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6940]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6939]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6941]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6940]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6942]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6941]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6943]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6942]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6943]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6944]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6945]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6944]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6945]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6946]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6947]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6946]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6948]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6947]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6949]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6949]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6950]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6948]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6950]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6951]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6952]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6951]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6953]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6952]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6954]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6953]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6955]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6954]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6956]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6955]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6957]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6957]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6958]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6956]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6959]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6958]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6960]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6959]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6961]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6960]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6962]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6961]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6963]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6962]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6964]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6963]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6965]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6964]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6966]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6965]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6967]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6966]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6968]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6967]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6969]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6968]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6970]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6969]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6971]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6970]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6972]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6971]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6973]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6972]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6973]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6974]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6975]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6974]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6976]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6975]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6977]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6976]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 6978]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6977]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6979]]} - {:process 5 :type :fail :f :txn :value [[:append 6 6978]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6980]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6979]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 6981]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6980]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 6982]]} - {:process 7 :type :fail :f :txn :value [[:append 2 6981]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6983]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6983]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 6984]]} - {:process 5 :type :fail :f :txn :value [[:append 5 6982]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6985]]} - {:process 7 :type :fail :f :txn :value [[:append 5 6984]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6986]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6985]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 6987]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6986]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 6988]]} - {:process 5 :type :fail :f :txn :value [[:append 0 6987]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6989]]} - {:process 7 :type :fail :f :txn :value [[:append 0 6988]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 6990]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6989]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 6991]]} - {:process 7 :type :fail :f :txn :value [[:append 1 6990]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 6992]]} - {:process 5 :type :fail :f :txn :value [[:append 7 6991]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 6993]]} - {:process 5 :type :fail :f :txn :value [[:append 4 6993]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 6994]]} - {:process 7 :type :fail :f :txn :value [[:append 3 6992]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 6995]]} - {:process 5 :type :fail :f :txn :value [[:append 2 6994]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 6996]]} - {:process 7 :type :fail :f :txn :value [[:append 4 6995]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 6997]]} - {:process 5 :type :fail :f :txn :value [[:append 3 6996]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 6998]]} - {:process 7 :type :fail :f :txn :value [[:append 6 6997]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 6999]]} - {:process 5 :type :fail :f :txn :value [[:append 1 6998]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7000]]} - {:process 7 :type :fail :f :txn :value [[:append 7 6999]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7000]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7001]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 7002]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7001]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7003]]} - {:process 7 :type :fail :f :txn :value [[:append 1 7002]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 7004]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7003]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7005]]} - {:process 7 :type :fail :f :txn :value [[:append 2 7004]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 7006]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7005]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7007]]} - {:process 7 :type :fail :f :txn :value [[:append 4 7006]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 7008]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7007]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 5 7008]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7009]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 7010]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7009]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7011]]} - {:process 7 :type :fail :f :txn :value [[:append 7 7010]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 7012]]} - {:process 7 :type :fail :f :txn :value [[:append 0 7012]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 7013]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7011]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7014]]} - {:process 7 :type :fail :f :txn :value [[:append 2 7013]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 7015]]} - {:process 7 :type :fail :f :txn :value [[:append 3 7015]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 7016]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7014]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7017]]} - {:process 7 :type :fail :f :txn :value [[:append 5 7016]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 7018]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7017]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7019]]} - {:process 7 :type :fail :f :txn :value [[:append 6 7018]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 7020]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7019]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7021]]} - {:process 7 :type :fail :f :txn :value [[:append 0 7020]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 7022]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7021]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7023]]} - {:process 7 :type :fail :f :txn :value [[:append 1 7022]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 7024]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7023]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7025]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7025]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7026]]} - {:process 7 :type :fail :f :txn :value [[:append 3 7024]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 7027]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7026]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7028]]} - {:process 7 :type :fail :f :txn :value [[:append 4 7027]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 7029]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7028]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7030]]} - {:process 7 :type :fail :f :txn :value [[:append 6 7029]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 7031]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7030]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7032]]} - {:process 7 :type :fail :f :txn :value [[:append 7 7031]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 7033]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7032]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 1 7033]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 7034]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7035]]} - {:process 7 :type :fail :f :txn :value [[:append 2 7034]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 7036]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7035]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7037]]} - {:process 7 :type :fail :f :txn :value [[:append 4 7036]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 7038]]} - {:process 7 :type :fail :f :txn :value [[:append 5 7038]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 7039]]} - {:process 7 :type :fail :f :txn :value [[:append 7 7039]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 7040]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7037]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7041]]} - {:process 7 :type :fail :f :txn :value [[:append 0 7040]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 7042]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7041]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7043]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7043]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7044]]} - {:process 7 :type :fail :f :txn :value [[:append 2 7042]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 7045]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7044]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7046]]} - {:process 7 :type :fail :f :txn :value [[:append 3 7045]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 7047]]} - {:process 7 :type :fail :f :txn :value [[:append 5 7047]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 7048]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7046]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 6 7048]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7049]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 7050]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7049]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7051]]} - {:process 7 :type :fail :f :txn :value [[:append 0 7050]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 7052]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7051]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7053]]} - {:process 7 :type :fail :f :txn :value [[:append 1 7052]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 7054]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7053]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7055]]} - {:process 7 :type :fail :f :txn :value [[:append 3 7054]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 7056]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7055]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7057]]} - {:process 7 :type :fail :f :txn :value [[:append 4 7056]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7057]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7058]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7058]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 7059]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7060]]} - {:process 7 :type :fail :f :txn :value [[:append 6 7059]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 7061]]} - {:process 7 :type :fail :f :txn :value [[:append 7 7061]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7060]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7063]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 7062]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7063]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7064]]} - {:process 7 :type :fail :f :txn :value [[:append 1 7062]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 7065]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7064]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7066]]} - {:process 7 :type :fail :f :txn :value [[:append 2 7065]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 7067]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7066]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7068]]} - {:process 7 :type :fail :f :txn :value [[:append 4 7067]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 7069]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7068]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7070]]} - {:process 7 :type :fail :f :txn :value [[:append 5 7069]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 7071]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7070]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7072]]} - {:process 7 :type :fail :f :txn :value [[:append 7 7071]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 7073]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7072]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7074]]} - {:process 7 :type :fail :f :txn :value [[:append 0 7073]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 7075]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7074]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7076]]} - {:process 7 :type :fail :f :txn :value [[:append 2 7075]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 7077]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7076]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7078]]} - {:process 7 :type :fail :f :txn :value [[:append 3 7077]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 7079]]} - {:process 7 :type :fail :f :txn :value [[:append 5 7079]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 7080]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7078]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 6 7080]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7081]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 7082]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7081]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7083]]} - {:process 7 :type :fail :f :txn :value [[:append 0 7082]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 7084]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7083]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7085]]} - {:process 7 :type :fail :f :txn :value [[:append 1 7084]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 7086]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7085]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7087]]} - {:process 7 :type :fail :f :txn :value [[:append 3 7086]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 7088]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7087]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7089]]} - {:process 7 :type :fail :f :txn :value [[:append 4 7088]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 7090]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7089]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7091]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7091]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7092]]} - {:process 7 :type :fail :f :txn :value [[:append 6 7090]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 7093]]} - {:process 7 :type :fail :f :txn :value [[:append 7 7093]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 7094]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7092]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7095]]} - {:process 7 :type :fail :f :txn :value [[:append 1 7094]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 7096]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7095]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 2 7096]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7097]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 7098]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7097]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7099]]} - {:process 7 :type :fail :f :txn :value [[:append 4 7098]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 7100]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7099]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7101]]} - {:process 7 :type :fail :f :txn :value [[:append 5 7100]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 7102]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7101]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7103]]} - {:process 7 :type :fail :f :txn :value [[:append 7 7102]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 7104]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7103]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7105]]} - {:process 7 :type :fail :f :txn :value [[:append 0 7104]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 7106]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7105]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7107]]} - {:process 7 :type :fail :f :txn :value [[:append 2 7106]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 7108]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7107]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7109]]} - {:process 7 :type :fail :f :txn :value [[:append 3 7108]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 7110]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7109]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7111]]} - {:process 7 :type :fail :f :txn :value [[:append 5 7110]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 7112]]} - {:process 7 :type :fail :f :txn :value [[:append 6 7112]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 7113]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7111]]} - {:process 7 :type :fail :f :txn :value [[:append 0 7113]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 7114]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7115]]} - {:process 7 :type :fail :f :txn :value [[:append 1 7114]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 7116]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7115]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7117]]} - {:process 7 :type :fail :f :txn :value [[:append 3 7116]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 7118]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7117]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 4 7118]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7119]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 7120]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7119]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7121]]} - {:process 7 :type :fail :f :txn :value [[:append 6 7120]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 7122]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7121]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 7 7122]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7123]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 7124]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7123]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7125]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7125]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7126]]} - {:process 7 :type :fail :f :txn :value [[:append 1 7124]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 7127]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7126]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7128]]} - {:process 7 :type :fail :f :txn :value [[:append 2 7127]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 7129]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7128]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7130]]} - {:process 7 :type :fail :f :txn :value [[:append 4 7129]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 7131]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7130]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7132]]} - {:process 7 :type :fail :f :txn :value [[:append 5 7131]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 7133]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7132]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7134]]} - {:process 7 :type :fail :f :txn :value [[:append 7 7133]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 7135]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7134]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7136]]} - {:process 7 :type :fail :f :txn :value [[:append 0 7135]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 7137]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7136]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7138]]} - {:process 7 :type :fail :f :txn :value [[:append 2 7137]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 7139]]} - {:process 7 :type :fail :f :txn :value [[:append 3 7139]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 7140]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7138]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7141]]} - {:process 7 :type :fail :f :txn :value [[:append 5 7140]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 7142]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7141]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7143]]} - {:process 7 :type :fail :f :txn :value [[:append 6 7142]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 7144]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7143]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7145]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7145]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7146]]} - {:process 7 :type :fail :f :txn :value [[:append 0 7144]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 7147]]} - {:process 7 :type :fail :f :txn :value [[:append 1 7147]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 7148]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7146]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7149]]} - {:process 7 :type :fail :f :txn :value [[:append 3 7148]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 7150]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7149]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7151]]} - {:process 7 :type :fail :f :txn :value [[:append 4 7150]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 7152]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7151]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7153]]} - {:process 7 :type :fail :f :txn :value [[:append 6 7152]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 7154]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7153]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 7 7154]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7155]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 7156]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7155]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7157]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7157]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7158]]} - {:process 7 :type :fail :f :txn :value [[:append 1 7156]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 7159]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7158]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7160]]} - {:process 7 :type :fail :f :txn :value [[:append 2 7159]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 7161]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7160]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7162]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7162]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7163]]} - {:process 7 :type :fail :f :txn :value [[:append 4 7161]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 7164]]} - {:process 7 :type :fail :f :txn :value [[:append 5 7164]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 7165]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7163]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 7 7165]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7166]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 7167]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7166]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7168]]} - {:process 7 :type :fail :f :txn :value [[:append 0 7167]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 7169]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7168]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7170]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7170]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7171]]} - {:process 7 :type :fail :f :txn :value [[:append 2 7169]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 7172]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7171]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 3 7172]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 7174]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7173]]} - {:process 7 :type :fail :f :txn :value [[:append 5 7174]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 7175]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7173]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7176]]} - {:process 7 :type :fail :f :txn :value [[:append 6 7175]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 7177]]} - {:process 7 :type :fail :f :txn :value [[:append 0 7177]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 7178]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7176]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7179]]} - {:process 7 :type :fail :f :txn :value [[:append 1 7178]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 7180]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7179]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7181]]} - {:process 7 :type :fail :f :txn :value [[:append 3 7180]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 7182]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7181]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7183]]} - {:process 7 :type :fail :f :txn :value [[:append 4 7182]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 7184]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7183]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7185]]} - {:process 7 :type :fail :f :txn :value [[:append 6 7184]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 7186]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7185]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7187]]} - {:process 7 :type :fail :f :txn :value [[:append 7 7186]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 7188]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7187]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7189]]} - {:process 7 :type :fail :f :txn :value [[:append 1 7188]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 7190]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7189]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7191]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7191]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7192]]} - {:process 7 :type :fail :f :txn :value [[:append 2 7190]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 7193]]} - {:process 7 :type :fail :f :txn :value [[:append 4 7193]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 7194]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7192]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7195]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7195]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7196]]} - {:process 7 :type :fail :f :txn :value [[:append 5 7194]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 7197]]} - {:process 7 :type :fail :f :txn :value [[:append 7 7197]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 7198]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7196]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 0 7198]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 7200]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7199]]} - {:process 7 :type :fail :f :txn :value [[:append 2 7200]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 7201]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7199]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7202]]} - {:process 7 :type :fail :f :txn :value [[:append 3 7201]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 7203]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7202]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 5 7203]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 7205]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7204]]} - {:process 7 :type :fail :f :txn :value [[:append 6 7205]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 7206]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7204]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7207]]} - {:process 7 :type :fail :f :txn :value [[:append 0 7206]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 7208]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7207]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7209]]} - {:process 7 :type :fail :f :txn :value [[:append 1 7208]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 7210]]} - {:process 7 :type :fail :f :txn :value [[:append 3 7210]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 7211]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7209]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7212]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7212]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 4 7211]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 7214]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7213]]} - {:process 7 :type :fail :f :txn :value [[:append 6 7214]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 7215]]} - {:process 7 :type :fail :f :txn :value [[:append 7 7215]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 7216]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7213]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7217]]} - {:process 7 :type :fail :f :txn :value [[:append 1 7216]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 7218]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7217]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7219]]} - {:process 7 :type :fail :f :txn :value [[:append 2 7218]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 7220]]} - {:process 7 :type :fail :f :txn :value [[:append 4 7220]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 7221]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7219]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7222]]} - {:process 7 :type :fail :f :txn :value [[:append 5 7221]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 7223]]} - {:process 7 :type :fail :f :txn :value [[:append 7 7223]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 7224]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7222]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7225]]} - {:process 7 :type :fail :f :txn :value [[:append 0 7224]]} - {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 7226]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7225]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7227]]} - {:process 7 :type :fail :f :txn :value [[:append 2 7226]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 7228]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7227]]} - {:process 7 :type :fail :f :txn :value [[:append 3 7228]]} - {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 7229]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7230]]} - {:process 7 :type :fail :f :txn :value [[:append 5 7229]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 7231]]} - {:process 7 :type :fail :f :txn :value [[:append 6 7231]]} - {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 0 7232]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7230]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7233]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7233]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7234]]} - {:process 7 :type :fail :f :txn :value [[:append 0 7232]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 7235]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7234]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7236]]} - {:process 7 :type :fail :f :txn :value [[:append 1 7235]]} - {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 3 7237]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7236]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7238]]} - {:process 7 :type :fail :f :txn :value [[:append 3 7237]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 7239]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7238]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7240]]} - {:process 7 :type :fail :f :txn :value [[:append 4 7239]]} - {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 6 7241]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7240]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7242]]} - {:process 7 :type :fail :f :txn :value [[:append 6 7241]]} - {:process 7 :type :invoke :f :txn :value [[:append 7 7243]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7242]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7244]]} - {:process 7 :type :fail :f :txn :value [[:append 7 7243]]} - {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7244]]} - {:process 7 :type :invoke :f :txn :value [[:append 1 7245]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7246]]} - {:process 7 :type :fail :f :txn :value [[:append 1 7245]]} - {:process 7 :type :invoke :f :txn :value [[:append 2 7247]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7246]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7248]]} - {:process 7 :type :fail :f :txn :value [[:append 2 7247]]} - {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 7 :type :invoke :f :txn :value [[:append 4 7249]]} - {:process 7 :type :fail :f :txn :value [[:append 4 7249]]} - {:process 7 :type :invoke :f :txn :value [[:append 5 7250]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7248]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 7 :type :fail :f :txn :value [[:append 5 7250]]} - {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7251]]} - {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7251]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7252]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7252]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7253]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7253]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7254]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7254]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7255]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7255]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7256]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7256]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7257]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7257]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7258]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7258]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7259]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7259]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7260]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7260]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7261]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7261]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7262]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7262]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7263]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7263]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7264]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7264]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7265]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7265]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7266]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7266]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7267]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7267]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7268]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7268]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7269]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7269]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7270]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7270]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7271]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7271]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7272]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7272]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7273]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7273]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7274]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7274]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7275]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7275]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7276]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7276]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7277]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7277]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7278]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7278]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7279]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7279]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7280]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7280]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7281]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7281]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7282]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7282]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7283]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7283]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7284]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7284]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7285]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7285]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7286]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7286]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7287]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7287]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7288]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7288]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7289]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7289]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7290]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7290]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7291]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7291]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7292]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7292]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7293]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7293]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7294]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7294]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7295]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7295]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7296]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7296]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7297]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7297]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7298]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7298]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7299]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7299]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7300]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7300]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7301]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7301]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7302]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7302]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7303]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7303]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7304]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7304]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7305]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7305]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7306]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7306]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7307]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7307]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7308]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7308]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7309]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7309]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7310]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7310]]} - {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7311]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7311]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7312]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7312]]} - {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7313]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7313]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7314]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7314]]} - {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 5 7315]]} - {:process 5 :type :fail :f :txn :value [[:append 5 7315]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7316]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7316]]} - {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 0 7317]]} - {:process 5 :type :fail :f :txn :value [[:append 0 7317]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7318]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7318]]} - {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 7 7319]]} - {:process 5 :type :fail :f :txn :value [[:append 7 7319]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7320]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7320]]} - {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 2 7321]]} - {:process 5 :type :fail :f :txn :value [[:append 2 7321]]} - {:process 5 :type :invoke :f :txn :value [[:append 3 7322]]} - {:process 5 :type :fail :f :txn :value [[:append 3 7322]]} - {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 1 7323]]} - {:process 5 :type :fail :f :txn :value [[:append 1 7323]]} - {:process 5 :type :invoke :f :txn :value [[:append 6 7324]]} - {:process 5 :type :fail :f :txn :value [[:append 6 7324]]} - {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 5 :type :invoke :f :txn :value [[:append 4 7325]]} - {:process 5 :type :fail :f :txn :value [[:append 4 7325]]} - {:process 1 :type :fail :f :txn :value [[:append 2 470]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7326]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7326]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7327]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7327]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7328]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7328]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7329]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7329]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7330]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7330]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7331]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7331]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7332]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7332]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7333]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7333]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7334]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7334]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7335]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7335]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7336]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7336]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7337]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7337]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7338]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7338]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7339]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7339]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7340]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7340]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7341]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7341]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7342]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7342]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7343]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7343]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7344]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7344]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7345]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7345]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7346]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7346]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7347]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7347]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7348]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7348]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7349]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7349]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7350]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7350]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7351]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7351]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7352]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7352]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7353]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7353]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7354]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7354]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7355]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7355]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7356]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7356]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7357]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7357]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7358]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7358]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7359]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7359]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7360]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7360]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7361]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7361]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7362]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7362]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7363]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7363]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7364]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7364]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7365]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7365]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7366]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7366]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7367]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7367]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7368]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7368]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7369]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7369]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7370]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7370]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7371]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7371]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7372]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7372]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7373]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7373]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7374]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7374]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7375]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7375]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7376]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7376]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7377]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7377]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7378]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7378]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7379]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7379]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7380]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7380]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7381]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7381]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7382]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7382]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7383]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7383]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7384]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7384]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7385]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7385]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7386]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7386]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7387]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7387]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7388]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7388]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7389]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7389]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7390]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7390]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7391]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7391]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7392]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7392]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7393]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7393]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7394]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7394]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7395]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7395]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7396]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7396]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7397]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7397]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7398]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7398]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7399]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7399]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7400]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7400]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7401]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7401]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7402]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7402]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7403]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7403]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7404]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7404]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7405]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7405]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7406]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7406]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7407]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7407]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7408]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7408]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7409]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7409]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7410]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7410]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7411]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7411]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7412]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7412]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7413]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7413]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7414]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7414]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7415]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7415]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7416]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7416]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7417]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7417]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7418]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7418]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7419]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7419]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7420]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7420]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7421]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7421]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7422]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7422]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7423]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7423]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7424]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7424]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7425]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7425]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7426]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7426]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7427]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7427]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7428]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7428]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7429]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7429]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7430]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7430]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7431]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7431]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7432]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7432]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7433]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7433]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7434]]} - {:process 3 :type :info :f :txn :value [[:append 5 468]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 7435]]} - {:process 1 :type :ok :f :txn :value [[:append 6 7434]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7436]]} - {:process 3 :type :ok :f :txn :value [[:append 4 7435]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 5 7436]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465]]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 7437]]} - {:process 1 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373 407 408 409 437 444 448 447 449 454 458]]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7438]]} - {:process 3 :type :ok :f :txn :value [[:append 2 7437]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 7439]]} - {:process 1 :type :ok :f :txn :value [[:append 7 7438]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7440]]} - {:process 3 :type :ok :f :txn :value [[:append 1 7439]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 2 7440]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373 407 408 409 437 444 448 447 449 454 458]]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 7441]]} - {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439]]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7442]]} - {:process 3 :type :ok :f :txn :value [[:append 7 7441]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 7443]]} - {:process 1 :type :ok :f :txn :value [[:append 4 7442]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7444]]} - {:process 3 :type :ok :f :txn :value [[:append 6 7443]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 3 7444]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436]]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 7445]]} - {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443]]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7446]]} - {:process 3 :type :ok :f :txn :value [[:append 4 7445]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 7447]]} - {:process 1 :type :ok :f :txn :value [[:append 5 7446]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7448]]} - {:process 3 :type :ok :f :txn :value [[:append 3 7447]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 0 7448]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 7449]]} - {:process 1 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405 411 412 419 431 441 453 450 457 460 7438 7441]]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7450]]} - {:process 3 :type :ok :f :txn :value [[:append 1 7449]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 7451]]} - {:process 1 :type :ok :f :txn :value [[:append 2 7450]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7452]]} - {:process 3 :type :ok :f :txn :value [[:append 0 7451]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 1 7452]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405 411 412 419 431 441 453 450 457 460 7438 7441]]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 7453]]} - {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445]]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7454]]} - {:process 3 :type :ok :f :txn :value [[:append 6 7453]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 7455]]} - {:process 1 :type :ok :f :txn :value [[:append 3 7454]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7456]]} - {:process 3 :type :ok :f :txn :value [[:append 5 7455]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 6 7456]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445]]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 7457]]} - {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455]]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7458]]} - {:process 3 :type :ok :f :txn :value [[:append 3 7457]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 7459]]} - {:process 1 :type :ok :f :txn :value [[:append 0 7458]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7460]]} - {:process 3 :type :ok :f :txn :value [[:append 2 7459]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 7 7460]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452]]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 7461]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7462]]} - {:process 3 :type :ok :f :txn :value [[:append 0 7461]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 7463]]} - {:process 1 :type :ok :f :txn :value [[:append 1 7462]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7464]]} - {:process 3 :type :ok :f :txn :value [[:append 7 7463]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 4 7464]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456]]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 7465]]} - {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457]]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7466]]} - {:process 3 :type :ok :f :txn :value [[:append 5 7465]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 7467]]} - {:process 1 :type :ok :f :txn :value [[:append 6 7466]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7468]]} - {:process 3 :type :ok :f :txn :value [[:append 4 7467]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 5 7468]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457]]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 7469]]} - {:process 1 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373 407 408 409 437 444 448 447 449 454 458 7448 7451 7458 7461]]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7470]]} - {:process 3 :type :ok :f :txn :value [[:append 2 7469]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 7471]]} - {:process 1 :type :ok :f :txn :value [[:append 7 7470]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7472]]} - {:process 3 :type :ok :f :txn :value [[:append 1 7471]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 2 7472]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373 407 408 409 437 444 448 447 449 454 458 7448 7451 7458 7461]]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 7473]]} - {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471]]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7474]]} - {:process 3 :type :ok :f :txn :value [[:append 7 7473]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 7475]]} - {:process 1 :type :ok :f :txn :value [[:append 4 7474]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7476]]} - {:process 3 :type :ok :f :txn :value [[:append 6 7475]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 3 7476]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468]]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 7477]]} - {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475]]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7478]]} - {:process 3 :type :ok :f :txn :value [[:append 4 7477]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 7479]]} - {:process 1 :type :ok :f :txn :value [[:append 5 7478]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7480]]} - {:process 3 :type :ok :f :txn :value [[:append 3 7479]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 0 7480]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 7481]]} - {:process 1 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405 411 412 419 431 441 453 450 457 460 7438 7441 7460 7463 7470 7473]]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7482]]} - {:process 3 :type :ok :f :txn :value [[:append 1 7481]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 7483]]} - {:process 1 :type :ok :f :txn :value [[:append 2 7482]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7484]]} - {:process 3 :type :ok :f :txn :value [[:append 0 7483]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405 411 412 419 431 441 453 450 457 460 7438 7441 7460 7463 7470 7473]]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 7485]]} - {:process 1 :type :ok :f :txn :value [[:append 1 7484]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477]]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7486]]} - {:process 3 :type :ok :f :txn :value [[:append 6 7485]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 7487]]} - {:process 1 :type :ok :f :txn :value [[:append 3 7486]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7488]]} - {:process 3 :type :ok :f :txn :value [[:append 5 7487]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477]]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 7489]]} - {:process 1 :type :ok :f :txn :value [[:append 6 7488]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487]]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7490]]} - {:process 3 :type :ok :f :txn :value [[:append 3 7489]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 7491]]} - {:process 1 :type :ok :f :txn :value [[:append 0 7490]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7492]]} - {:process 3 :type :ok :f :txn :value [[:append 2 7491]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484]]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 7493]]} - {:process 1 :type :ok :f :txn :value [[:append 7 7492]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7494]]} - {:process 3 :type :ok :f :txn :value [[:append 0 7493]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 7495]]} - {:process 1 :type :ok :f :txn :value [[:append 1 7494]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7496]]} - {:process 3 :type :ok :f :txn :value [[:append 7 7495]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488]]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 7497]]} - {:process 1 :type :ok :f :txn :value [[:append 4 7496]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489]]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7498]]} - {:process 3 :type :ok :f :txn :value [[:append 5 7497]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 7499]]} - {:process 1 :type :ok :f :txn :value [[:append 6 7498]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7500]]} - {:process 3 :type :ok :f :txn :value [[:append 4 7499]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489]]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 7501]]} - {:process 1 :type :ok :f :txn :value [[:append 5 7500]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373 407 408 409 437 444 448 447 449 454 458 7448 7451 7458 7461 7480 7483 7490 7493]]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7502]]} - {:process 3 :type :ok :f :txn :value [[:append 2 7501]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 7503]]} - {:process 1 :type :ok :f :txn :value [[:append 7 7502]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7504]]} - {:process 3 :type :ok :f :txn :value [[:append 1 7503]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 0 [6 15 19 32 39 40 54 58 60 59 66 72 73 95 100 102 108 115 117 146 156 158 184 188 189 192 191 196 202 227 229 231 230 243 244 279 280 286 310 311 317 321 323 322 332 351 353 359 364 371 373 407 408 409 437 444 448 447 449 454 458 7448 7451 7458 7461 7480 7483 7490 7493]]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 7505]]} - {:process 1 :type :ok :f :txn :value [[:append 2 7504]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503]]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7506]]} - {:process 3 :type :ok :f :txn :value [[:append 7 7505]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 7507]]} - {:process 1 :type :ok :f :txn :value [[:append 4 7506]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7508]]} - {:process 3 :type :ok :f :txn :value [[:append 6 7507]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500]]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 7509]]} - {:process 1 :type :ok :f :txn :value [[:append 3 7508]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507]]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7510]]} - {:process 3 :type :ok :f :txn :value [[:append 4 7509]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 7511]]} - {:process 1 :type :ok :f :txn :value [[:append 5 7510]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7512]]} - {:process 3 :type :ok :f :txn :value [[:append 3 7511]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 7513]]} - {:process 1 :type :ok :f :txn :value [[:append 0 7512]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405 411 412 419 431 441 453 450 457 460 7438 7441 7460 7463 7470 7473 7492 7495 7502 7505]]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7514]]} - {:process 3 :type :ok :f :txn :value [[:append 1 7513]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 7515]]} - {:process 1 :type :ok :f :txn :value [[:append 2 7514]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7516]]} - {:process 3 :type :ok :f :txn :value [[:append 0 7515]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 7 [1 8 17 24 34 42 46 62 69 75 78 80 103 109 116 120 129 144 145 148 154 165 175 185 194 203 205 207 235 236 242 245 264 271 277 275 284 293 304 316 324 327 329 333 358 366 368 369 392 399 405 411 412 419 431 441 453 450 457 460 7438 7441 7460 7463 7470 7473 7492 7495 7502 7505]]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 7517]]} - {:process 1 :type :ok :f :txn :value [[:append 1 7516]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509]]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7518]]} - {:process 3 :type :ok :f :txn :value [[:append 6 7517]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 7519]]} - {:process 1 :type :ok :f :txn :value [[:append 3 7518]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7520]]} - {:process 3 :type :ok :f :txn :value [[:append 5 7519]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509]]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 7521]]} - {:process 1 :type :ok :f :txn :value [[:append 6 7520]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519]]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7522]]} - {:process 3 :type :ok :f :txn :value [[:append 3 7521]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 7523]]} - {:process 1 :type :ok :f :txn :value [[:append 0 7522]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7524]]} - {:process 3 :type :ok :f :txn :value [[:append 2 7523]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516]]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 7525]]} - {:process 1 :type :ok :f :txn :value [[:append 7 7524]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7526]]} - {:process 3 :type :info :f :txn :value [[:append 0 7525]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 7527]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7526]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7528]]} - {:process 3 :type :info :f :txn :value [[:append 7 7527]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :info :f :txn :value [[:append 4 7528]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520]]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 7529]]} - {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521]]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7530]]} - {:process 3 :type :ok :f :txn :value [[:append 5 7529]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 7531]]} - {:process 1 :type :ok :f :txn :value [[:append 6 7530]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7532]]} - {:process 3 :type :ok :f :txn :value [[:append 4 7531]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 5 7532]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521]]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 7533]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7534]]} - {:process 3 :type :ok :f :txn :value [[:append 2 7533]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 7535]]} - {:process 1 :type :ok :f :txn :value [[:append 7 7534]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7536]]} - {:process 3 :type :ok :f :txn :value [[:append 1 7535]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 2 7536]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 7537]]} - {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516 7535]]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7538]]} - {:process 3 :type :ok :f :txn :value [[:append 7 7537]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 7539]]} - {:process 1 :type :ok :f :txn :value [[:append 4 7538]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7540]]} - {:process 3 :type :ok :f :txn :value [[:append 6 7539]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 3 7540]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519 7529 7532]]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 7541]]} - {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520 7530 7539]]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7542]]} - {:process 3 :type :ok :f :txn :value [[:append 4 7541]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 7543]]} - {:process 1 :type :ok :f :txn :value [[:append 5 7542]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7544]]} - {:process 3 :type :ok :f :txn :value [[:append 3 7543]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 0 7544]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 7545]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7546]]} - {:process 3 :type :ok :f :txn :value [[:append 1 7545]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 7547]]} - {:process 1 :type :ok :f :txn :value [[:append 2 7546]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7548]]} - {:process 3 :type :ok :f :txn :value [[:append 0 7547]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 1 7548]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 7549]]} - {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509 7531 7538 7541]]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7550]]} - {:process 3 :type :ok :f :txn :value [[:append 6 7549]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 7551]]} - {:process 1 :type :ok :f :txn :value [[:append 3 7550]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7552]]} - {:process 3 :type :ok :f :txn :value [[:append 5 7551]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 6 7552]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509 7531 7538 7541]]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 7553]]} - {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519 7529 7532 7542 7551]]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7554]]} - {:process 3 :type :ok :f :txn :value [[:append 3 7553]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 7555]]} - {:process 1 :type :ok :f :txn :value [[:append 0 7554]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7556]]} - {:process 3 :type :ok :f :txn :value [[:append 2 7555]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 7 7556]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516 7535 7545 7548]]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 7557]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7558]]} - {:process 3 :type :ok :f :txn :value [[:append 0 7557]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 7559]]} - {:process 1 :type :ok :f :txn :value [[:append 1 7558]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7560]]} - {:process 3 :type :ok :f :txn :value [[:append 7 7559]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 4 7560]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520 7530 7539 7549 7552]]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 7561]]} - {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521 7540 7543 7550 7553]]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7562]]} - {:process 3 :type :ok :f :txn :value [[:append 5 7561]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 7563]]} - {:process 1 :type :ok :f :txn :value [[:append 6 7562]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7564]]} - {:process 3 :type :ok :f :txn :value [[:append 4 7563]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 5 7564]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521 7540 7543 7550 7553]]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 7565]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7566]]} - {:process 3 :type :ok :f :txn :value [[:append 2 7565]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 7567]]} - {:process 1 :type :ok :f :txn :value [[:append 7 7566]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7568]]} - {:process 3 :type :ok :f :txn :value [[:append 1 7567]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 2 7568]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 7569]]} - {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516 7535 7545 7548 7558 7567]]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7570]]} - {:process 3 :type :ok :f :txn :value [[:append 7 7569]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 7571]]} - {:process 1 :type :ok :f :txn :value [[:append 4 7570]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7572]]} - {:process 3 :type :ok :f :txn :value [[:append 6 7571]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 3 7572]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519 7529 7532 7542 7551 7561 7564]]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 7573]]} - {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520 7530 7539 7549 7552 7562 7571]]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7574]]} - {:process 3 :type :ok :f :txn :value [[:append 4 7573]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 7575]]} - {:process 1 :type :ok :f :txn :value [[:append 5 7574]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7576]]} - {:process 3 :type :ok :f :txn :value [[:append 3 7575]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 0 7576]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 7577]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7578]]} - {:process 3 :type :ok :f :txn :value [[:append 1 7577]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 7579]]} - {:process 1 :type :ok :f :txn :value [[:append 2 7578]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7580]]} - {:process 3 :type :ok :f :txn :value [[:append 0 7579]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 1 7580]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 7581]]} - {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509 7531 7538 7541 7560 7563 7570 7573]]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7582]]} - {:process 3 :type :ok :f :txn :value [[:append 6 7581]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 7583]]} - {:process 1 :type :ok :f :txn :value [[:append 3 7582]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7584]]} - {:process 3 :type :ok :f :txn :value [[:append 5 7583]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 6 7584]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509 7531 7538 7541 7560 7563 7570 7573]]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 7585]]} - {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519 7529 7532 7542 7551 7561 7564 7574 7583]]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7586]]} - {:process 3 :type :ok :f :txn :value [[:append 3 7585]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 7587]]} - {:process 1 :type :ok :f :txn :value [[:append 0 7586]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7588]]} - {:process 3 :type :ok :f :txn :value [[:append 2 7587]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 7 7588]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516 7535 7545 7548 7558 7567 7577 7580]]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 7589]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7590]]} - {:process 3 :type :ok :f :txn :value [[:append 0 7589]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 7591]]} - {:process 1 :type :ok :f :txn :value [[:append 1 7590]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7592]]} - {:process 3 :type :ok :f :txn :value [[:append 7 7591]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 4 7592]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520 7530 7539 7549 7552 7562 7571 7581 7584]]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 7593]]} - {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521 7540 7543 7550 7553 7572 7575 7582 7585]]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7594]]} - {:process 3 :type :ok :f :txn :value [[:append 5 7593]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 7595]]} - {:process 1 :type :ok :f :txn :value [[:append 6 7594]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7596]]} - {:process 3 :type :ok :f :txn :value [[:append 4 7595]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 5 7596]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521 7540 7543 7550 7553 7572 7575 7582 7585]]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 7597]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7598]]} - {:process 3 :type :ok :f :txn :value [[:append 2 7597]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 7599]]} - {:process 1 :type :ok :f :txn :value [[:append 7 7598]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7600]]} - {:process 3 :type :ok :f :txn :value [[:append 1 7599]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 2 7600]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 7601]]} - {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516 7535 7545 7548 7558 7567 7577 7580 7590 7599]]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7602]]} - {:process 3 :type :ok :f :txn :value [[:append 7 7601]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 7603]]} - {:process 1 :type :ok :f :txn :value [[:append 4 7602]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7604]]} - {:process 3 :type :ok :f :txn :value [[:append 6 7603]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 3 7604]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519 7529 7532 7542 7551 7561 7564 7574 7583 7593 7596]]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 7605]]} - {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520 7530 7539 7549 7552 7562 7571 7581 7584 7594 7603]]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7606]]} - {:process 3 :type :ok :f :txn :value [[:append 4 7605]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 7607]]} - {:process 1 :type :ok :f :txn :value [[:append 5 7606]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7608]]} - {:process 3 :type :ok :f :txn :value [[:append 3 7607]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 0 7608]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 7609]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7610]]} - {:process 3 :type :ok :f :txn :value [[:append 1 7609]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 7611]]} - {:process 1 :type :ok :f :txn :value [[:append 2 7610]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7612]]} - {:process 3 :type :ok :f :txn :value [[:append 0 7611]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 1 7612]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 7613]]} - {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509 7531 7538 7541 7560 7563 7570 7573 7592 7595 7602 7605]]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7614]]} - {:process 3 :type :ok :f :txn :value [[:append 6 7613]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 7615]]} - {:process 1 :type :ok :f :txn :value [[:append 3 7614]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7616]]} - {:process 3 :type :ok :f :txn :value [[:append 5 7615]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 6 7616]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509 7531 7538 7541 7560 7563 7570 7573 7592 7595 7602 7605]]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 7617]]} - {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519 7529 7532 7542 7551 7561 7564 7574 7583 7593 7596 7606 7615]]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7618]]} - {:process 3 :type :ok :f :txn :value [[:append 3 7617]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 7619]]} - {:process 1 :type :ok :f :txn :value [[:append 0 7618]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7620]]} - {:process 3 :type :ok :f :txn :value [[:append 2 7619]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 7 7620]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516 7535 7545 7548 7558 7567 7577 7580 7590 7599 7609 7612]]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 7621]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7622]]} - {:process 3 :type :ok :f :txn :value [[:append 0 7621]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 7623]]} - {:process 1 :type :ok :f :txn :value [[:append 1 7622]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7624]]} - {:process 3 :type :ok :f :txn :value [[:append 7 7623]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 4 7624]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520 7530 7539 7549 7552 7562 7571 7581 7584 7594 7603 7613 7616]]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 7625]]} - {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521 7540 7543 7550 7553 7572 7575 7582 7585 7604 7607 7614 7617]]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7626]]} - {:process 3 :type :ok :f :txn :value [[:append 5 7625]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 7627]]} - {:process 1 :type :ok :f :txn :value [[:append 6 7626]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7628]]} - {:process 3 :type :ok :f :txn :value [[:append 4 7627]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 5 7628]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521 7540 7543 7550 7553 7572 7575 7582 7585 7604 7607 7614 7617]]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 7629]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7630]]} - {:process 3 :type :ok :f :txn :value [[:append 2 7629]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 7631]]} - {:process 1 :type :ok :f :txn :value [[:append 7 7630]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7632]]} - {:process 3 :type :ok :f :txn :value [[:append 1 7631]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 2 7632]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 7633]]} - {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516 7535 7545 7548 7558 7567 7577 7580 7590 7599 7609 7612 7622 7631]]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7634]]} - {:process 3 :type :ok :f :txn :value [[:append 7 7633]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 7635]]} - {:process 1 :type :ok :f :txn :value [[:append 4 7634]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7636]]} - {:process 3 :type :ok :f :txn :value [[:append 6 7635]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 3 7636]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519 7529 7532 7542 7551 7561 7564 7574 7583 7593 7596 7606 7615 7625 7628]]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 7637]]} - {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520 7530 7539 7549 7552 7562 7571 7581 7584 7594 7603 7613 7616 7626 7635]]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7638]]} - {:process 3 :type :ok :f :txn :value [[:append 4 7637]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 7639]]} - {:process 1 :type :ok :f :txn :value [[:append 5 7638]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7640]]} - {:process 3 :type :ok :f :txn :value [[:append 3 7639]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 0 7640]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 7641]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7642]]} - {:process 3 :type :ok :f :txn :value [[:append 1 7641]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 7643]]} - {:process 1 :type :ok :f :txn :value [[:append 2 7642]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7644]]} - {:process 3 :type :ok :f :txn :value [[:append 0 7643]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 1 7644]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 7645]]} - {:process 1 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509 7531 7538 7541 7560 7563 7570 7573 7592 7595 7602 7605 7624 7627 7634 7637]]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7646]]} - {:process 3 :type :ok :f :txn :value [[:append 6 7645]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 7647]]} - {:process 1 :type :ok :f :txn :value [[:append 3 7646]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7648]]} - {:process 3 :type :ok :f :txn :value [[:append 5 7647]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 6 7648]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 4 [3 12 21 23 28 37 44 53 81 94 96 119 125 123 122 130 136 138 161 164 167 169 180 181 216 219 222 252 249 253 255 259 258 269 288 291 294 300 308 309 345 346 349 374 375 387 386 384 383 393 414 421 427 426 434 436 469 7435 7442 7445 7464 7467 7474 7477 7496 7499 7506 7509 7531 7538 7541 7560 7563 7570 7573 7592 7595 7602 7605 7624 7627 7634 7637]]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 7649]]} - {:process 1 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519 7529 7532 7542 7551 7561 7564 7574 7583 7593 7596 7606 7615 7625 7628 7638 7647]]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7650]]} - {:process 3 :type :ok :f :txn :value [[:append 3 7649]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 7651]]} - {:process 1 :type :ok :f :txn :value [[:append 0 7650]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7652]]} - {:process 3 :type :ok :f :txn :value [[:append 2 7651]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 7 7652]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516 7535 7545 7548 7558 7567 7577 7580 7590 7599 7609 7612 7622 7631 7641 7644]]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 7653]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7654]]} - {:process 3 :type :ok :f :txn :value [[:append 0 7653]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 7655]]} - {:process 1 :type :ok :f :txn :value [[:append 1 7654]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7656]]} - {:process 3 :type :ok :f :txn :value [[:append 7 7655]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 4 7656]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520 7530 7539 7549 7552 7562 7571 7581 7584 7594 7603 7613 7616 7626 7635 7645 7648]]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 7657]]} - {:process 1 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521 7540 7543 7550 7553 7572 7575 7582 7585 7604 7607 7614 7617 7636 7639 7646 7649]]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7658]]} - {:process 3 :type :ok :f :txn :value [[:append 5 7657]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 7659]]} - {:process 1 :type :ok :f :txn :value [[:append 6 7658]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7660]]} - {:process 3 :type :ok :f :txn :value [[:append 4 7659]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 5 7660]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 3 [4 11 14 30 31 43 50 55 57 65 79 82 83 91 101 105 124 134 141 142 143 168 171 178 182 199 206 210 212 217 228 241 247 261 267 265 270 298 301 303 305 330 336 338 342 348 356 370 381 389 390 391 394 428 430 433 435 455 464 465 7444 7447 7454 7457 7476 7479 7486 7489 7508 7511 7518 7521 7540 7543 7550 7553 7572 7575 7582 7585 7604 7607 7614 7617 7636 7639 7646 7649]]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 7661]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7662]]} - {:process 3 :type :ok :f :txn :value [[:append 2 7661]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 7663]]} - {:process 1 :type :ok :f :txn :value [[:append 7 7662]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7664]]} - {:process 3 :type :ok :f :txn :value [[:append 1 7663]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 2 7664]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 7665]]} - {:process 1 :type :ok :f :txn :value [[:r 1 [5 25 27 29 35 47 48 56 92 97 107 111 121 132 135 137 140 151 150 162 174 177 176 179 214 232 234 238 251 260 266 268 274 272 273 292 302 306 307 312 347 361 360 362 379 385 395 398 402 400 403 420 425 432 438 446 7439 7449 7452 7462 7471 7481 7484 7494 7503 7513 7516 7535 7545 7548 7558 7567 7577 7580 7590 7599 7609 7612 7622 7631 7641 7644 7654 7663]]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7666]]} - {:process 3 :type :ok :f :txn :value [[:append 7 7665]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 7667]]} - {:process 1 :type :ok :f :txn :value [[:append 4 7666]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7668]]} - {:process 3 :type :ok :f :txn :value [[:append 6 7667]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 3 7668]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :ok :f :txn :value [[:r 5 [9 16 20 41 49 51 68 67 77 74 86 88 99 110 112 114 118 153 166 170 173 186 195 201 204 208 213 215 226 237 239 240 246 283 295 296 297 315 325 326 334 335 337 339 357 365 367 372 376 413 422 424 423 442 451 459 463 461 466 7436 7446 7455 7465 7468 7478 7487 7497 7500 7510 7519 7529 7532 7542 7551 7561 7564 7574 7583 7593 7596 7606 7615 7625 7628 7638 7647 7657 7660]]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 7669]]} - {:process 1 :type :ok :f :txn :value [[:r 6 [2 7 33 38 45 52 63 61 70 71 76 89 106 127 149 147 152 155 157 160 163 183 190 193 197 200 198 224 233 248 276 278 281 282 285 289 290 313 318 319 320 328 331 355 363 377 401 404 406 410 417 416 418 439 445 443 452 456 462 7434 7443 7453 7456 7466 7475 7485 7488 7498 7507 7517 7520 7530 7539 7549 7552 7562 7571 7581 7584 7594 7603 7613 7616 7626 7635 7645 7648 7658 7667]]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7670]]} - {:process 3 :type :ok :f :txn :value [[:append 4 7669]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 7671]]} - {:process 1 :type :ok :f :txn :value [[:append 5 7670]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7672]]} - {:process 3 :type :ok :f :txn :value [[:append 3 7671]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 0 7672]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 7673]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7674]]} - {:process 3 :type :ok :f :txn :value [[:append 1 7673]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 7675]]} - {:process 1 :type :ok :f :txn :value [[:append 2 7674]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7676]]} - {:process 3 :type :ok :f :txn :value [[:append 0 7675]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :ok :f :txn :value [[:append 1 7676]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7677]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7677]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7678]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7678]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7679]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7679]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7680]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7680]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7681]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7681]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7682]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7682]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7683]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7683]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7684]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7684]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7685]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7685]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7686]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7686]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7687]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7687]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7688]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7688]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7689]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7689]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7690]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7690]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7691]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7691]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7692]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7692]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7693]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7693]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7694]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7694]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7695]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7695]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7696]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7696]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7697]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7697]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7698]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7698]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7699]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7699]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7700]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7700]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7701]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7701]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7702]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7702]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7703]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7703]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7704]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7704]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7705]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7705]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7706]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7706]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7707]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7707]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7708]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7708]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7709]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7709]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7710]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7710]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7711]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7711]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7712]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7712]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7713]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7713]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7714]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7714]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7715]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7715]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7716]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7716]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7717]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7717]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7718]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7718]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7719]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7719]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7720]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7720]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7721]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7721]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7722]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7722]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7723]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7723]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7724]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7724]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7725]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7725]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7726]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7726]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7727]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7727]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7728]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7728]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7729]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7729]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7730]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7730]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7731]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7731]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7732]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7732]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7733]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7733]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7734]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7734]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7735]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7735]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7736]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7736]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7737]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7737]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7738]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7738]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7739]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7739]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7740]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7740]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7741]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7741]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7742]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7742]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7743]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7743]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7744]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7744]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7745]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7745]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7746]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7746]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7747]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7747]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7748]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7748]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7749]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7749]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7750]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7750]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7751]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7751]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7752]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7752]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7753]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7753]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7754]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7754]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7755]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7755]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7756]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7756]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7757]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7757]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7758]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7758]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7759]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7759]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7760]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7760]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7761]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7761]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7762]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7762]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7763]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7763]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7764]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7764]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7765]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7765]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7766]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7766]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7767]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7767]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7768]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7768]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7769]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7769]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7770]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7770]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7771]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7771]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7772]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7772]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7773]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7773]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7774]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7774]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7775]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7775]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7776]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7776]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7777]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7777]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7778]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7778]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7779]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7779]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7780]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7780]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7781]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7781]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7782]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7782]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7783]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7783]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7784]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7784]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7785]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 7786]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7785]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7787]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7787]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7788]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7788]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7789]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7789]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7790]]} - {:process 3 :type :fail :f :txn :value [[:append 6 7786]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 7791]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7790]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7792]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7792]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7793]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7793]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7794]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7794]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7795]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7795]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7796]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7796]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7797]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7797]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7798]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7798]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7799]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7799]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7800]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7800]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7801]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7801]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7802]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7802]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7803]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7803]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7804]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7804]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7805]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7805]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7806]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7806]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7807]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7807]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7808]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7808]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7809]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7809]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7810]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7810]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7811]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7811]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7812]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7812]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7813]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7813]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7814]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7814]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7815]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7815]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7816]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7816]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7817]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7817]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7818]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7818]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7819]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7819]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7820]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7820]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7821]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7821]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7822]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7822]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7823]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7823]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7824]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7824]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7825]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7825]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7826]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7826]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7827]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7827]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7828]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7828]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7829]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7829]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7830]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7830]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7831]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7831]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7832]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7832]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7833]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7833]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7834]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7834]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7835]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7835]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7836]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7836]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7837]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7837]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7838]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7838]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7839]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7839]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7840]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7840]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7841]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7841]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7842]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7842]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7843]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7843]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7844]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7844]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7845]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7845]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7846]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7846]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7847]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7847]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7848]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7848]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7849]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7849]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7850]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7850]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7851]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7851]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7852]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7852]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7853]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7853]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7854]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7854]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7855]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7855]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7856]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7856]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7857]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7857]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7858]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7858]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7859]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7859]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7860]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7860]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7861]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7861]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7862]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7862]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7863]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7863]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7864]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7864]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7865]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7865]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7866]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7866]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7867]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7867]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7868]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7868]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7869]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7869]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7870]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7870]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7871]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7871]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7872]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7872]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7873]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7873]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7874]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7874]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7875]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7875]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7876]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7876]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7877]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7877]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7878]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7878]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7879]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7879]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7880]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7880]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7881]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7881]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7882]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7882]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7883]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7883]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7884]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7884]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7885]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7885]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7886]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7886]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7887]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7887]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7888]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7888]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7889]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7889]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7890]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7890]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7891]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7891]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7892]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7892]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7893]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7893]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7894]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7894]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7895]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7895]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7896]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7896]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7897]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7897]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7898]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7898]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7899]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7899]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7900]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7900]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7901]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7901]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7902]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7902]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7903]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7903]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7904]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7904]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7905]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7905]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7906]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7906]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7907]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7907]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7908]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7908]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7909]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7909]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7910]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7910]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7911]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7911]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7912]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7912]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7913]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7913]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7914]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7914]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7915]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7915]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7916]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7916]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7917]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7917]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7918]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7918]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7919]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7919]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7920]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7920]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7921]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7921]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7922]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7922]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7923]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7923]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7924]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7924]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7925]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7925]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7926]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7926]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7927]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7927]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7928]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7928]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7929]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7929]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7930]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7930]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7931]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7931]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7932]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7932]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7933]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7933]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7934]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7934]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7935]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7935]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7936]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7936]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7937]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7937]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7938]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7938]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7939]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7939]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7940]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7940]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7941]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7941]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7942]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7942]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7943]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7943]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7944]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7944]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7945]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7945]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7946]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7946]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7947]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7947]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7948]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7948]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7949]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7949]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7950]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7950]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7951]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7951]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7952]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7952]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7953]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7953]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7954]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7954]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7955]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7955]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7956]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7956]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7957]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7957]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7958]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7958]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7959]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7959]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7960]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7960]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7961]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7961]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7962]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7962]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7963]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7963]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7964]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7964]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7965]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7965]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7966]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7966]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7967]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7967]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7968]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7968]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7969]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7969]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7970]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7970]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7971]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7971]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7972]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7972]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7973]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7973]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7974]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7974]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7975]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7975]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7976]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7976]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7977]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7977]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7978]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7978]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7979]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7979]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7980]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7980]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7981]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7981]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7982]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7982]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7983]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7983]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7984]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7984]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7985]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7985]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7986]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7986]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7987]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7987]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7988]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7988]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 7989]]} - {:process 1 :type :fail :f :txn :value [[:append 6 7989]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7990]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7990]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 7991]]} - {:process 1 :type :fail :f :txn :value [[:append 7 7991]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7992]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7992]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 7993]]} - {:process 1 :type :fail :f :txn :value [[:append 4 7993]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7994]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7994]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 7995]]} - {:process 1 :type :fail :f :txn :value [[:append 5 7995]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 7996]]} - {:process 1 :type :fail :f :txn :value [[:append 0 7996]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 7997]]} - {:process 1 :type :fail :f :txn :value [[:append 2 7997]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 7998]]} - {:process 1 :type :fail :f :txn :value [[:append 1 7998]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 7999]]} - {:process 1 :type :fail :f :txn :value [[:append 3 7999]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8000]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8000]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8001]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8001]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8002]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8002]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8003]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8003]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8004]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8004]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8005]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8005]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8006]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8006]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8007]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8007]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8008]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8008]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8009]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8009]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8010]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8010]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8011]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8011]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8012]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8012]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8013]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8013]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8014]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8014]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8015]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8015]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8016]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8016]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8017]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8017]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8018]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8018]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8019]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8019]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8020]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8020]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8021]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8021]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8022]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8022]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8023]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8023]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8024]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8024]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8025]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8025]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8026]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8026]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8027]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8027]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8028]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8028]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8029]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8029]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8030]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8030]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8031]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8031]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8032]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8032]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8033]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8033]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8034]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8034]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8035]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8035]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8036]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8036]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8037]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8037]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8038]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8038]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8039]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8039]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8040]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8040]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8041]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8041]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8042]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8042]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8043]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8043]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8044]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8044]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8045]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8045]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8046]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8046]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8047]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8047]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8048]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8048]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8049]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8049]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8050]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8050]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8051]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8051]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8052]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8052]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8053]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8053]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8054]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8054]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8055]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8055]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8056]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8056]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8057]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8057]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8058]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8058]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8059]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8059]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8060]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8060]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8061]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8061]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8062]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8062]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8063]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8063]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8064]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8064]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8065]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8065]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8066]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8066]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8067]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8067]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8068]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8068]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8069]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8069]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8070]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8070]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8071]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8071]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8072]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8072]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8073]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8073]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8074]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8074]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8075]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8075]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8076]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8076]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8077]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8077]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8078]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8078]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8079]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8079]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8080]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8080]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8081]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8081]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8082]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8082]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8083]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8083]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8084]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8084]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8085]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8085]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8086]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8086]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8087]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8087]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8088]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8088]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8089]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8089]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8090]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8090]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8091]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8091]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8092]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8092]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8093]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8093]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8094]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8094]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8095]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8095]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8096]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8096]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8097]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8097]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8098]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8098]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8099]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8099]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8100]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8100]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8101]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8101]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8102]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8102]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8103]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8103]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8104]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8104]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8105]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8105]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8106]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8106]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8107]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8107]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8108]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8108]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8109]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8109]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8110]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8110]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8111]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8111]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8112]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8112]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8113]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8113]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8114]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8114]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8115]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8115]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8116]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8116]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8117]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8117]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8118]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8118]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8119]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8119]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8120]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8120]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8121]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8121]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8122]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8122]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8123]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8123]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8124]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8124]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8125]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8125]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8126]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8126]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8127]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8127]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8128]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8128]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8129]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8129]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8130]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8130]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8131]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8131]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8132]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8132]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8133]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8133]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8134]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8134]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8135]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8135]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8136]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8136]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8137]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8137]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8138]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8138]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8139]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8139]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8140]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8140]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:append 5 7791]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8141]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8141]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8142]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8143]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8142]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8144]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8144]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8145]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8145]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8146]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8146]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8147]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8147]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8148]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8148]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8149]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8149]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8150]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8150]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8151]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8151]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8152]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8152]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8153]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8153]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8154]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8154]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8155]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8155]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8156]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8156]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8157]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8157]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8158]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8158]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8159]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8159]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8160]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8160]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8161]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8161]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8162]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8162]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8163]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8163]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8164]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8164]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8165]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8165]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8166]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8166]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8167]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8167]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8168]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8168]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8169]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8169]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8170]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8170]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8171]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8171]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8172]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8172]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8173]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8173]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8174]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8174]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8175]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8175]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8176]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8176]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8177]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8177]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8178]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8178]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8179]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8179]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8180]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8180]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8181]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8181]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8182]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8182]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8183]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8183]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8184]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8184]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8185]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8185]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8186]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8186]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8187]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8187]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8188]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8188]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8189]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8189]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8190]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8190]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8191]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8191]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8192]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8192]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8193]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8193]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8194]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8194]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8195]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8195]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8196]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8196]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8197]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8197]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8198]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8198]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8199]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8199]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8200]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8200]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8201]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8201]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8202]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8202]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8203]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8203]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8204]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8204]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8205]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8205]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8206]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8206]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8207]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8207]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8208]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8208]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8209]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8209]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8210]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8210]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8211]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8211]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8212]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8212]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8213]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8213]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8214]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8214]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8215]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8215]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8216]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8216]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8217]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8217]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8218]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8218]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8219]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8219]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8220]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8220]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8221]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8221]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8222]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8222]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8223]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8223]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8224]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8224]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8225]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8225]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8226]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8226]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8227]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8227]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8228]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8228]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8229]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8229]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8230]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8230]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8231]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8231]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8232]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8232]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8233]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8233]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8234]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8234]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8235]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8235]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8236]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8236]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8237]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8237]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8238]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8238]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8239]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8239]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8240]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8240]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8241]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8241]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8242]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8242]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8243]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8243]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8244]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8244]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8245]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8245]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8246]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8246]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8247]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8247]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8248]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8248]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8249]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8249]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8250]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8250]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8251]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8251]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8252]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8252]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8253]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8253]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8254]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8254]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8255]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8255]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8256]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8256]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8257]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8257]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8258]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8258]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8259]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8259]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8260]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8260]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8261]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8261]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8262]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8262]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8263]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8263]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8264]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8264]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8265]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8265]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8266]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8266]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8267]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8267]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8268]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8268]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8269]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8269]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8270]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8270]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8271]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8271]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8272]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8272]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8273]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8273]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8274]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8274]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8275]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8275]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8276]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8276]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8277]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8277]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8278]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8278]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8279]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8279]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8280]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8280]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8281]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8281]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8282]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8282]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8283]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8283]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8284]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8284]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8285]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8285]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8286]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8286]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8287]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8287]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8288]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8288]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8289]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8289]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8290]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8290]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8291]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8291]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8292]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8292]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8293]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8293]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8294]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8294]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8295]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8295]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8296]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8296]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8297]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8297]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8298]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8298]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8299]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8299]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8300]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8300]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8301]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8301]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8302]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8302]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8303]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8303]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8304]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8304]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8305]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8305]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8306]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8306]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8307]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8307]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8308]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8308]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8309]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8309]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8310]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8310]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8311]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8311]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8312]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8312]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8313]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8313]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8314]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8314]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8315]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8315]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8316]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8316]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8317]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8317]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8318]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8318]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8319]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8319]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8320]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8320]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8321]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8321]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8322]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8322]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8323]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8323]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8324]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8324]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8325]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8325]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8326]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8326]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8327]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8327]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8328]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8328]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8329]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8329]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8330]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8330]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8331]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8331]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8332]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8332]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8333]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8333]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8334]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8334]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8335]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8335]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8336]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8336]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8337]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8337]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8338]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8338]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8339]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8339]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8340]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8340]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8341]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8341]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8342]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8342]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8343]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8343]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8344]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8344]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8345]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8345]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8346]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8346]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8347]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8347]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8348]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8348]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8349]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8349]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8350]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8350]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8351]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8351]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8352]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8352]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8353]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8353]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8354]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8354]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8355]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8355]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8356]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8356]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8357]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8357]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8358]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8358]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8359]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8359]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8360]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8360]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8361]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8361]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8362]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8362]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8363]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8363]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8364]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8364]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8365]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8365]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8366]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8366]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8367]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8367]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8368]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8368]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8369]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8369]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8370]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8370]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8371]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8371]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8372]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8372]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8373]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8373]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8374]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8374]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8375]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8375]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8376]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8376]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8377]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8377]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8378]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8378]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8379]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8379]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8380]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8380]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8381]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8381]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8382]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8382]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8383]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8383]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8384]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8384]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8385]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8385]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8386]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8386]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8387]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8387]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8388]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8388]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8389]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8389]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8390]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8390]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8391]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8391]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8392]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8392]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8393]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8393]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8394]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8394]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8395]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8395]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8396]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8396]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8397]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8397]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8398]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8398]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8399]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8399]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8400]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8400]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8401]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8401]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8402]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8402]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8403]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8403]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8404]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8404]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8405]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8405]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8406]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8406]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8407]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8407]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8408]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8408]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8409]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8409]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8410]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8410]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8411]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8411]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8412]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8412]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8413]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8413]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8414]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8414]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8415]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8415]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8416]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8416]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8417]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8417]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8418]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8418]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8419]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8419]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8420]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8420]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8421]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8421]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8422]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8422]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8423]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8423]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8424]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8424]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8425]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8425]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8426]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8426]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8427]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8427]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8428]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8428]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8429]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8429]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8430]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8430]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8431]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8431]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8432]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8432]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8433]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8433]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8434]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8434]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8435]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8435]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8436]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8436]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8437]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8437]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8438]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8438]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8439]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8439]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8440]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8440]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8441]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8441]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8442]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8442]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8443]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8443]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8444]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8444]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8445]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8445]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8446]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8446]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8447]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8447]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8448]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8448]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8449]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8449]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8450]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8450]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8451]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8451]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8452]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8452]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8453]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8453]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8454]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8454]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8455]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8455]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8456]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8456]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8457]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8457]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8458]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8458]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8459]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8459]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8460]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8460]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8461]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8461]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8462]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8462]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8463]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8463]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8464]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8464]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8465]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8465]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8466]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8466]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8467]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8467]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8468]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8468]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8469]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8469]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8470]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8470]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8471]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8471]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8472]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8472]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8473]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8473]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8474]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8474]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8475]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8475]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8476]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8476]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8477]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8477]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8478]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8478]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8479]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8479]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8480]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8480]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8481]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8481]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8482]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8482]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8483]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8483]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8484]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8484]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8485]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8485]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8486]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8486]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8487]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8487]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8488]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8488]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8489]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8489]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8490]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8490]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8491]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8491]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8492]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8492]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8493]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8493]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8494]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8494]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8495]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8495]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8496]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8496]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8497]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8497]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8498]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8498]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8499]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8499]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8500]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8500]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8501]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8501]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8502]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8502]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8503]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8503]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8504]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8504]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8505]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8505]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8506]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8506]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8507]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8507]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8508]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8508]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8509]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8509]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8510]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8510]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8511]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8511]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8512]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8512]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8513]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8513]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8514]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8514]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8515]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8515]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8516]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8516]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8517]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8517]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8518]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8518]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8519]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8519]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8520]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8520]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8521]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8521]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8522]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8522]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8523]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8523]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8524]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8524]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8525]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8525]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8526]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8526]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8527]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8527]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8528]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8528]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8529]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8529]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8530]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8530]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8531]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8531]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8532]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8532]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8533]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8533]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8534]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8534]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8535]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8535]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8536]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8536]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8537]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8537]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8538]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8538]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8539]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8539]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8540]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8540]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8541]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8541]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8542]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8542]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8543]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8543]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8544]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8544]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8545]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8545]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8546]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8546]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8547]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8547]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8548]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8548]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8549]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8549]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8550]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8550]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8551]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8551]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8552]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8552]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8553]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8553]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8554]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8554]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8555]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8555]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8556]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8556]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8557]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8557]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8558]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8558]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8559]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8559]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8560]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8560]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8561]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8561]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8562]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8562]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8563]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8563]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8564]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8564]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8565]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8565]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8566]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8566]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8567]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8567]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8568]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8568]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8569]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8569]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8570]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8570]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8571]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8571]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8572]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8572]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8573]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8573]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8574]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8574]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8575]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8575]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8576]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8576]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8577]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8577]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8578]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8578]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8579]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8579]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8580]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8580]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8581]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8581]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8582]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8582]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8583]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8583]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8584]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8584]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8585]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8585]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8586]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8586]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8587]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8587]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8588]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8588]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8589]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8589]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8590]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8590]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8591]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8591]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8592]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8592]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8593]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8593]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8594]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8594]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8595]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8595]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8596]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8596]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8597]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8597]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8598]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8598]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8599]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8599]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8600]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8600]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8601]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8601]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8602]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8602]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8603]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8603]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8604]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8604]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8605]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8605]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8606]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8606]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8607]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8607]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8608]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8608]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8609]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8609]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8610]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8610]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8611]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8611]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8612]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8612]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8613]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8613]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8614]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8614]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8615]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8615]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8616]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8616]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8617]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8617]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8618]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8618]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8619]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8619]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8620]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8620]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8621]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8621]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8622]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8622]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8623]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8623]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8624]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8624]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8625]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8625]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8626]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8626]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8627]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8627]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8628]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8628]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8629]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8629]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8630]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8630]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8631]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8631]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8632]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8632]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8633]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8633]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8634]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8634]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8635]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8635]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8636]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8636]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8637]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8637]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8638]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8638]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8639]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8639]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8640]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8640]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8641]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8641]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8642]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8642]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8643]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8643]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8644]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8644]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8645]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8645]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8646]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8646]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8647]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8647]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8648]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8648]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8649]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8649]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8650]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8650]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8651]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8651]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8652]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8652]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8653]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8653]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8654]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8654]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8655]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8655]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8656]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8656]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8657]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8657]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8658]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8658]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8659]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8659]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8660]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8660]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8661]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8661]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8662]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8662]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8663]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8663]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8664]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8664]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8665]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8665]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8666]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8666]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8667]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8667]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8668]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8668]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8669]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8669]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8670]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8670]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8671]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8671]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8672]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8672]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8673]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8673]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8674]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8674]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8675]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8675]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8676]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8676]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8677]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8677]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8678]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8678]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8679]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8679]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8680]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8680]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8681]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8681]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8682]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8682]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8683]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8683]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8684]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8684]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8685]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8685]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8686]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8686]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8687]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8687]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8688]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8688]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8689]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8689]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8690]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8690]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8691]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8691]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8692]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8692]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8693]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8693]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8694]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8694]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8695]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8695]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8696]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8696]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8697]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8697]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8698]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8698]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8699]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8699]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8700]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8700]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8701]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8701]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8702]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8702]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8703]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8703]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8704]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8704]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8705]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8705]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8706]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8706]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8707]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8707]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8708]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8708]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8709]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8709]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8710]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8710]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8711]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8711]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8712]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8712]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8713]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8713]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8714]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8714]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8715]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8715]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8716]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8716]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8717]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8717]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8718]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8718]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8719]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8719]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8720]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8720]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8721]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8721]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8722]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8722]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8723]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8723]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8724]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8724]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8725]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8725]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8726]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8726]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8727]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8727]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8728]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8728]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8729]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8729]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8730]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8730]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8731]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8731]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8732]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8732]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8733]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8733]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8734]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8734]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8735]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8735]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8736]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8736]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8737]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8737]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8738]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8738]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8739]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8739]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8740]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8740]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8741]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8741]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8742]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8742]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8743]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8743]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8744]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8744]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8745]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8745]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8746]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8746]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8747]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8747]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8748]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8748]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8749]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8749]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8750]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8750]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8751]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8751]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8752]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8752]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8753]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8753]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8754]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8754]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8755]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8755]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8756]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8756]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8757]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8757]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8758]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8758]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8759]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8759]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8760]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8760]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8761]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8761]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8762]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8762]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8763]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8763]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8764]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8764]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8765]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8765]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8766]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8766]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8767]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8767]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8768]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8768]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8769]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8769]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8770]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8770]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8771]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8771]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8772]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8772]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8773]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8773]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8774]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8774]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8775]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8775]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8776]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8776]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8777]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8777]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8778]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8778]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8779]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8779]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8780]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8780]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8781]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8781]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8782]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8782]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8783]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8783]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8784]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8784]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8785]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8785]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8786]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8786]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8787]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8787]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8788]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8788]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8789]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8789]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8790]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8790]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8791]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8791]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8792]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8792]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8793]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8793]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8794]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8794]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8795]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8795]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8796]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8796]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8797]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8797]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8798]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8798]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8799]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8799]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8800]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8800]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8801]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8801]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8802]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8802]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8803]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8803]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8804]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8804]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8805]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8805]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8806]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8806]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8807]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8807]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8808]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8808]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8809]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8809]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8810]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8810]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8811]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8811]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8812]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8812]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8813]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8813]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8814]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8814]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8815]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8815]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8816]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8816]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8817]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8817]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8818]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8818]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8819]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8819]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8820]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8820]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8821]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8821]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8822]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8822]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8823]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8823]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8824]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8824]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8825]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8825]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8826]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8826]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8827]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8827]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8828]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8828]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8829]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8829]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8830]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8830]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8831]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8831]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8832]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8832]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8833]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8833]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8834]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8834]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8835]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8835]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8836]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8836]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 8837]]} - {:process 3 :type :fail :f :txn :value [[:append 2 8837]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8838]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8838]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 8839]]} - {:process 3 :type :fail :f :txn :value [[:append 7 8839]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8840]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8840]]} - {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 8841]]} - {:process 3 :type :fail :f :txn :value [[:append 4 8841]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8842]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8842]]} - {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 8843]]} - {:process 3 :type :fail :f :txn :value [[:append 1 8843]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 8844]]} - {:process 3 :type :fail :f :txn :value [[:append 0 8844]]} - {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 8845]]} - {:process 3 :type :fail :f :txn :value [[:append 6 8845]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 8846]]} - {:process 3 :type :fail :f :txn :value [[:append 5 8846]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 8847]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8143]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8848]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8848]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8849]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8849]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8850]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8850]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8851]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8851]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8852]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8852]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8853]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8853]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8854]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8854]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8855]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8855]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8856]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8856]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8857]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8857]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8858]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8858]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8859]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8859]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8860]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8860]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8861]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8861]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8862]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8862]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8863]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8863]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8864]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8864]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8865]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8865]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8866]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8866]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8867]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8867]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8868]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8868]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8869]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8869]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8870]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8870]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8871]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8871]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8872]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8872]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8873]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8873]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8874]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8874]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8875]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8875]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8876]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8876]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8877]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8877]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8878]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8878]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8879]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8879]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8880]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8880]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8881]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8881]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8882]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8882]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8883]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8883]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8884]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8884]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8885]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8885]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8886]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8886]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8887]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8887]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8888]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8888]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8889]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8889]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8890]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8890]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8891]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8891]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8892]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8892]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8893]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8893]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8894]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8894]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8895]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8895]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8896]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8896]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8897]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8897]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8898]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8898]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8899]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8899]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8900]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8900]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8901]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8901]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8902]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8902]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8903]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8903]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8904]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8904]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8905]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8905]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8906]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8906]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8907]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8907]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8908]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8908]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8909]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8909]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8910]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8910]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8911]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8911]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8912]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8912]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8913]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8913]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8914]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8914]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8915]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8915]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8916]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8916]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8917]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8917]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8918]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8918]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8919]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8919]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8920]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8920]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8921]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8921]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8922]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8922]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8923]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8923]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8924]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8924]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8925]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8925]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8926]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8926]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8927]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8927]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8928]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8928]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8929]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8929]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8930]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8930]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8931]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8931]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8932]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8932]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8933]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8933]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8934]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8934]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8935]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8935]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8936]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8936]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8937]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8937]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8938]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8938]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8939]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8939]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8940]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8940]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8941]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8941]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8942]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8942]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8943]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8943]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8944]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8944]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8945]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8945]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8946]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8946]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8947]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8947]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8948]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8948]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8949]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8949]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8950]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8950]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8951]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8951]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8952]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8952]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8953]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8953]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8954]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8954]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8955]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8955]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8956]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8956]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8957]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8957]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8958]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8958]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8959]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8959]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8960]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8960]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8961]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8961]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8962]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8962]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8963]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8963]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8964]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8964]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8965]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8965]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8966]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8966]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8967]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8967]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8968]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8968]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8969]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8969]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8970]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8970]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8971]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8971]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8972]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8972]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8973]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8973]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8974]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8974]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8975]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8975]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8976]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8976]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8977]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8977]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8978]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8978]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8979]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8979]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8980]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8980]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8981]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8981]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8982]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8982]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8983]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8983]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8984]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8984]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8985]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8985]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8986]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8986]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8987]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8987]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8988]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8988]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8989]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8989]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 8990]]} - {:process 1 :type :fail :f :txn :value [[:append 2 8990]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8991]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8991]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 8992]]} - {:process 1 :type :fail :f :txn :value [[:append 3 8992]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8993]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8993]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 8994]]} - {:process 1 :type :fail :f :txn :value [[:append 0 8994]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 8995]]} - {:process 1 :type :fail :f :txn :value [[:append 7 8995]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 8996]]} - {:process 1 :type :fail :f :txn :value [[:append 1 8996]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 8997]]} - {:process 1 :type :fail :f :txn :value [[:append 4 8997]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 8998]]} - {:process 1 :type :fail :f :txn :value [[:append 6 8998]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 8999]]} - {:process 1 :type :fail :f :txn :value [[:append 5 8999]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9000]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9000]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9001]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9001]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9002]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9002]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9003]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9003]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9004]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9004]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9005]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9005]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9006]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9006]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9007]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9007]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9008]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9008]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9009]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9009]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9010]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9010]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9011]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9011]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9012]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9012]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9013]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9013]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9014]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9014]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9015]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9015]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9016]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9016]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9017]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9017]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9018]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9018]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9019]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9019]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9020]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9020]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9021]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9021]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9022]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9022]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9023]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9023]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9024]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9024]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9025]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9025]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9026]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9026]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9027]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9027]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9028]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9028]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9029]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9029]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9030]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9030]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9031]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9031]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9032]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9032]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9033]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9033]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9034]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9034]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9035]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9035]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9036]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9036]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9037]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9037]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9038]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9038]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9039]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9039]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9040]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9040]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9041]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9041]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9042]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9042]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9043]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9043]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9044]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9044]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9045]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9045]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9046]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9046]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9047]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9047]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9048]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9048]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9049]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9049]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9050]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9050]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9051]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9051]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9052]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9052]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9053]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9053]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9054]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9054]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9055]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9055]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9056]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9056]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9057]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9057]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9058]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9058]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9059]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9059]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9060]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9060]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9061]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9061]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9062]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9062]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9063]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9063]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9064]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9064]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9065]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9065]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9066]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9066]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9067]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9067]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9068]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9068]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9069]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9069]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9070]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9070]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9071]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9071]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9072]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9072]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9073]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9073]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9074]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9074]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9075]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9075]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9076]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9076]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9077]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9077]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9078]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9078]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9079]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9079]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9080]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9080]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9081]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9081]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9082]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9082]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9083]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9083]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9084]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9084]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9085]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9085]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9086]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9086]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9087]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9087]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9088]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9088]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9089]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9089]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9090]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9090]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9091]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9091]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9092]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9092]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9093]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9093]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9094]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9094]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9095]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9095]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9096]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9096]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9097]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9097]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9098]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9098]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9099]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9099]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9100]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9100]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9101]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9101]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9102]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9102]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9103]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9103]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9104]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9104]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9105]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9105]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9106]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9106]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9107]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9107]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9108]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9108]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9109]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9109]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9110]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9110]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9111]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9111]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9112]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9112]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9113]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9113]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9114]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9114]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9115]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9115]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9116]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9116]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9117]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9117]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9118]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9118]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9119]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9119]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9120]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9120]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9121]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9121]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9122]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9122]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9123]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9123]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9124]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9124]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9125]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9125]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9126]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9126]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9127]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9127]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9128]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9128]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9129]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9129]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9130]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9130]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9131]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9131]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9132]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9132]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9133]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9133]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9134]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9134]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9135]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9135]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9136]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9136]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9137]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9137]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9138]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9138]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9139]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9139]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9140]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9140]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9141]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9141]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9142]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9142]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9143]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9143]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9144]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9144]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9145]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9145]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9146]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9146]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9147]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9147]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9148]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9148]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9149]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9149]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9150]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9150]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9151]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9151]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9152]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9152]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9153]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9153]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9154]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9154]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9155]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9155]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9156]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9156]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9157]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9157]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9158]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9158]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9159]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9159]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9160]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9160]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9161]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9161]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9162]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9162]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9163]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9163]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9164]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9164]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9165]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9165]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9166]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9166]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9167]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9167]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9168]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9168]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9169]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9169]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9170]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9170]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9171]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9171]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9172]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9172]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9173]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9173]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9174]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9174]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9175]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9175]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9176]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9176]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9177]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9177]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9178]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9178]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9179]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9179]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9180]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9180]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9181]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9181]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9182]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9182]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9183]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9183]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9184]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9184]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9185]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9185]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9186]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9186]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9187]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9187]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9188]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9188]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9189]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9189]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9190]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9190]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9191]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9191]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9192]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9192]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9193]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9193]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9194]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9194]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9195]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9195]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9196]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9196]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9197]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9197]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9198]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9198]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9199]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9199]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9200]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9200]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9201]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9201]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9202]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9202]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9203]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9203]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9204]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9204]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9205]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9205]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9206]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9206]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9207]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9207]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9208]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9208]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9209]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9209]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9210]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9210]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9211]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9211]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9212]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9212]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9213]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9213]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9214]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9214]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9215]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9215]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9216]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9216]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9217]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9217]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9218]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9218]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9219]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9219]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9220]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9220]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9221]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9221]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9222]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9222]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9223]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9223]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9224]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9224]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9225]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9225]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9226]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9226]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9227]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9227]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9228]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9228]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9229]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9229]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9230]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9230]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9231]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9231]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9232]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9232]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9233]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9233]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9234]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9234]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9235]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9235]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9236]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9236]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9237]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9237]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9238]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9238]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9239]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9239]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9240]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9240]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9241]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9241]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9242]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9242]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9243]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9243]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9244]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9244]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9245]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9245]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9246]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9246]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9247]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9247]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9248]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9248]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9249]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9249]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9250]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9250]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9251]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9251]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9252]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9252]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9253]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9253]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9254]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9254]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9255]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9255]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9256]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9256]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9257]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9257]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9258]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9258]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9259]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9259]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9260]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9260]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9261]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9261]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9262]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9262]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9263]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9263]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9264]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9264]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9265]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9265]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9266]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9266]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9267]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9267]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9268]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9268]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9269]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9269]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9270]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9270]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9271]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9271]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9272]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9272]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9273]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9273]]} - {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9274]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9274]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9275]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9275]]} - {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9276]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9276]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9277]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9277]]} - {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 2 9278]]} - {:process 1 :type :fail :f :txn :value [[:append 2 9278]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9279]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9279]]} - {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 3 9280]]} - {:process 1 :type :fail :f :txn :value [[:append 3 9280]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9281]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9281]]} - {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 0 9282]]} - {:process 1 :type :fail :f :txn :value [[:append 0 9282]]} - {:process 1 :type :invoke :f :txn :value [[:append 7 9283]]} - {:process 1 :type :fail :f :txn :value [[:append 7 9283]]} - {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 1 9284]]} - {:process 1 :type :fail :f :txn :value [[:append 1 9284]]} - {:process 1 :type :invoke :f :txn :value [[:append 4 9285]]} - {:process 1 :type :fail :f :txn :value [[:append 4 9285]]} - {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 1 :type :invoke :f :txn :value [[:append 6 9286]]} - {:process 1 :type :fail :f :txn :value [[:append 6 9286]]} - {:process 1 :type :invoke :f :txn :value [[:append 5 9287]]} - {:process 1 :type :fail :f :txn :value [[:append 5 9287]]} - {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:append 3 8847]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9288]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9288]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4123]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4122]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4124]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4123]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4125]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4124]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4126]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4125]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4127]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4126]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4128]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4127]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4129]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4128]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4130]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4129]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4131]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4130]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4132]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4131]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4133]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4132]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4134]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4133]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4135]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4134]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4136]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4135]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4137]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4136]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4138]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4137]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4139]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4138]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4140]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4139]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4141]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4140]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4142]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4141]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4143]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4142]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4144]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4143]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4145]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4144]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4146]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4145]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4147]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4146]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4148]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4147]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4149]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4148]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4150]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4149]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4151]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4150]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4152]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4151]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4153]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4152]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4154]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4153]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4155]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4154]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4156]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4155]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4157]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4156]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4157]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4158]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4159]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4158]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4159]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4160]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4161]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4160]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4162]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4161]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4163]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4162]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4164]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4163]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4164]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4165]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4166]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4165]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4167]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4166]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4168]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4167]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4168]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4169]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4170]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4169]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4171]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4170]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4172]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4171]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4172]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4173]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4174]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4173]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4175]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4174]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4176]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4175]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4176]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4177]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4178]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4177]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4179]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4179]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4180]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4180]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4181]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4181]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4182]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4178]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4183]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4182]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4184]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4183]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4185]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4184]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4186]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4185]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4187]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4186]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4188]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4187]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4189]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4188]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4190]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4189]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4191]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4190]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4192]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4191]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4193]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4192]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4194]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4193]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4195]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4194]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4196]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4195]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4197]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4196]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4198]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4197]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4199]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4198]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4200]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4199]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4201]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4200]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4202]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4201]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4203]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4202]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4204]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4203]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4205]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4204]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4205]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4206]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4207]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4206]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4208]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4207]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4209]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4208]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4210]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4210]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4211]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4209]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4211]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4212]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4213]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4212]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4213]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4214]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4215]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4214]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4216]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4215]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4216]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4217]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4218]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4217]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4219]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4218]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4220]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4219]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4220]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4221]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4222]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4221]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4223]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4222]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4224]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4223]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4225]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4224]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4226]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4225]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4227]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4226]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4228]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4227]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4229]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4228]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4230]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4229]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4231]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4230]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4232]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4231]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4233]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4232]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4234]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4233]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4235]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4234]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4236]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4235]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4237]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4236]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4238]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4237]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4239]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4238]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4240]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4239]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4240]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4241]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4242]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4241]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4243]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4242]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4244]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4243]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4244]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4245]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4246]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4245]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4247]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4246]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4248]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4247]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4249]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4248]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4250]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4249]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4251]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4250]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4252]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4251]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4252]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4253]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4254]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4253]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4255]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4254]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4256]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4255]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4256]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4257]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4258]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4257]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4259]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4258]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4260]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4259]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4261]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4260]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4262]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4261]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4263]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4262]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4264]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4264]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4265]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4263]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4265]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4266]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4267]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4266]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4268]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4267]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4269]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4268]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4270]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4269]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4271]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4271]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4270]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4272]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4273]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4272]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4274]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4273]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4275]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4274]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4276]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4275]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4277]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4276]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4278]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4277]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4279]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4278]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4280]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4279]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4281]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4280]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4282]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4281]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4283]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4282]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4284]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4283]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4285]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4284]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4286]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4285]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4287]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4286]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4288]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4287]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4289]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4288]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4290]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4289]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4291]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4290]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4292]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4291]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4293]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4292]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4294]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4293]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4295]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4294]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4296]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4295]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4297]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4296]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4298]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4297]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4299]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4298]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4300]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4299]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4301]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4300]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4302]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4301]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4303]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4302]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4304]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4303]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4305]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4304]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4306]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4305]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4307]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4306]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4308]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4307]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4309]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4308]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4310]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4309]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4311]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4310]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4312]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4311]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4313]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4312]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4314]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4313]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4315]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4314]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4316]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4315]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4317]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4316]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4318]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4317]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4319]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4318]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4320]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4319]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4321]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4320]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4322]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4321]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4323]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4322]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4324]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4323]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4325]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4324]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4326]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4325]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4327]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4326]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4328]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4327]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4328]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4329]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4330]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4330]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4331]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4329]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4332]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4331]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4333]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4332]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4334]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4333]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4335]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4334]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4336]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4335]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4336]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4337]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4338]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4337]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4339]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4338]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4340]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4339]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4340]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4341]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4342]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4342]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4343]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4341]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4344]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4343]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4345]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4344]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4345]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4346]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4347]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4346]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4348]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4347]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4349]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4348]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4350]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4350]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4351]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4349]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4351]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4352]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4353]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4352]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4354]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4353]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4355]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4354]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4356]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4355]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4357]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4356]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4358]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4357]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4359]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4358]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4360]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4359]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4361]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4360]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4362]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4361]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4363]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4362]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4364]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4363]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4365]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4364]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4366]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4365]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4367]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4366]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4368]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4367]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4369]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4368]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4370]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4369]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4371]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4370]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4372]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4371]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4373]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4372]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4374]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4373]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4375]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4374]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4376]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4375]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4377]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4376]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4378]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4377]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4379]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4378]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4380]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4379]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4381]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4380]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4382]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4381]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4383]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4382]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4383]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4384]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4385]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4385]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4386]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4384]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4387]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4386]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4388]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4387]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4388]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4389]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4390]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4389]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4391]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4390]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4392]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4391]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4393]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4392]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4394]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4393]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4395]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4394]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4396]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4395]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4396]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4397]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4398]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4397]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4399]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4398]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4400]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4399]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4400]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4401]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4402]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4401]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4403]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4402]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4404]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4403]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4404]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4405]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4406]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4405]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4407]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4406]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4408]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4407]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4408]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4409]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4410]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4409]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4411]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4410]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4412]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4411]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4412]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4413]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4414]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4413]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4415]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4414]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4416]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4415]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4416]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4417]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4418]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4417]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4419]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4418]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4420]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4419]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4421]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4420]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4422]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4421]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4423]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4422]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4424]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4423]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4424]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4425]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4426]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4425]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4427]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4426]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4428]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4427]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4428]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4429]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4430]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4429]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4431]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4430]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4432]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4431]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4433]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4432]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4434]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4433]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4435]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4434]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4436]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4435]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4436]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4437]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4438]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4437]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4439]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4438]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4440]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4439]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4440]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4441]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4441]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4442]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4442]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4443]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4444]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4443]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4445]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4444]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4446]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4445]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4446]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4447]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4448]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4447]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4449]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4448]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4450]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4449]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4450]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4451]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4452]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4451]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4453]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4452]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4454]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4454]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4455]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4453]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4456]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4455]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4457]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4456]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4458]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4458]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4459]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4459]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4460]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4457]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4460]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4461]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4462]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4461]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4463]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4462]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4464]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4463]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4464]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4465]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4466]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4465]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4467]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4466]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4468]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4467]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4468]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4469]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4470]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4469]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4471]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4470]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4472]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4471]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4472]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4473]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4474]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4473]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4475]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4474]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4476]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4475]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4477]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4476]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4478]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4477]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4479]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4478]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4480]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4479]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4480]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4481]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4482]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4481]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4483]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4482]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4484]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4483]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4485]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4484]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4486]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4485]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4487]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4486]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4488]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4487]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4489]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4488]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4490]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4489]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4491]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4490]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4492]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4491]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4492]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4493]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4494]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4493]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4495]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4494]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4496]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4495]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4497]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4496]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4498]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4497]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4498]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4500]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4499]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4500]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4501]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4499]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4502]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4501]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4503]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4502]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4504]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4503]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4505]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4504]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4506]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4505]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4507]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4506]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4508]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4507]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4509]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4508]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4510]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4509]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4511]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4510]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4512]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4511]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4513]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4512]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4514]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4513]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4515]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4514]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4516]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4515]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4517]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4516]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4518]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4517]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4519]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4518]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4520]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4519]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4521]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4520]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4522]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4521]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4523]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4522]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4524]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4523]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4525]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4524]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4526]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4525]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4527]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4526]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4528]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4527]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4529]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4528]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4530]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4529]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4531]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4530]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4532]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4531]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4533]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4532]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4534]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4533]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4535]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4534]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4536]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4535]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4537]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4536]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4538]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4537]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4539]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4538]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4540]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4539]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4541]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4540]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4542]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4541]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4543]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4542]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4544]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4543]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4545]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4544]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4546]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4545]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4547]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4546]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4548]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4547]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4549]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4548]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4550]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4549]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4551]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4550]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4552]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4551]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4553]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4552]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4554]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4553]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4555]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4554]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4555]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4556]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4557]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4556]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4557]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4558]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4559]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4558]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4560]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4559]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4561]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4560]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4562]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4561]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4563]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4562]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4564]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4564]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4565]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4563]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4566]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4565]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4566]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4567]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4568]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4567]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4569]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4568]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4570]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4569]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4570]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4571]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4572]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4571]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4573]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4573]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4574]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4572]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4575]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4574]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4576]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4575]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4576]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4577]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4578]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4577]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4579]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4578]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4580]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4579]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4580]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4581]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4582]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4581]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4583]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4582]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4584]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4583]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4584]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4585]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4586]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4585]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4587]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4586]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4588]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4587]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4588]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4589]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4590]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4589]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4591]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4590]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4592]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4591]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4593]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4592]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4594]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4593]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4595]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4594]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4596]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4595]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4597]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4596]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4598]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4597]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4599]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4598]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4600]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4599]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4600]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4601]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4602]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4601]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4603]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4602]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4604]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4603]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4605]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4604]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4606]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4605]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4607]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4606]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4608]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4607]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4608]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4609]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4610]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4609]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4611]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4610]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4612]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4611]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4612]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4613]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4614]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4613]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4615]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4614]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4616]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4615]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4616]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4617]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4618]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4617]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4619]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4618]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4620]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4619]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4620]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4621]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4622]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4621]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4623]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4622]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4624]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4623]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4624]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4625]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4626]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4625]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4627]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4626]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4628]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4627]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4628]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4629]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4630]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4629]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4631]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4630]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4632]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4631]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4632]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4633]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4634]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4633]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4635]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4634]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4636]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4635]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4637]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4636]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4638]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4637]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4639]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4638]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4640]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4639]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4641]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4640]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4642]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4641]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4643]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4642]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4644]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4643]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4645]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4644]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4646]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4645]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4647]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4646]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4648]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4647]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4649]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4648]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4650]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4649]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4651]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4650]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4652]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4651]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4652]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4653]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4654]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4653]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4655]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4654]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4656]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4655]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4656]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4657]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4658]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4657]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4659]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4658]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4660]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4659]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4661]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4661]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4662]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4660]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4663]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4662]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4663]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4664]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4665]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4665]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4666]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4664]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4667]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4666]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4668]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4668]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4669]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4667]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4669]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4670]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4671]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4670]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4672]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4671]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4673]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4672]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4674]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4673]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4674]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4675]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4676]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4675]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4677]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4676]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4678]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4677]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4679]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4678]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4680]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4679]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4681]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4680]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4682]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4681]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4683]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4682]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4684]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4683]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4685]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4684]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4686]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4685]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4686]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4687]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4688]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4687]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4689]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4688]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4690]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4689]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4690]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4691]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4692]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4691]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4693]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4692]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4694]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4693]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4695]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4694]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4696]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4695]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4697]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4696]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4698]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4697]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4698]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4699]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4700]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4699]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4701]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4700]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4702]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4701]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4703]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4702]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4704]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4703]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4705]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4704]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4706]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4705]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4706]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4707]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4708]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4707]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4709]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4708]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4710]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4709]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4710]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4711]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4712]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4711]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4713]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4712]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4714]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4713]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4714]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4715]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4716]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4715]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4717]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4716]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4718]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4717]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4718]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4719]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4719]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4720]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4720]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4721]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4722]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4721]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4723]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4722]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4724]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4723]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4725]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4724]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4726]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4726]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4727]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4725]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4728]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4727]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4729]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4728]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4730]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4729]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4731]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4730]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4732]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4731]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4733]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4732]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4734]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4733]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4735]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4734]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4736]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4735]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4737]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4736]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4738]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4737]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4739]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4738]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4740]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4739]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4741]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4740]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4741]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4742]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4743]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4742]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4744]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4743]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4745]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4744]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4746]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4745]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4747]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4746]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4748]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4747]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4749]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4748]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4750]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4749]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4751]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4750]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4752]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4751]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4753]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4752]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4754]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4753]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4755]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4754]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4756]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4755]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4757]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4756]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4758]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4757]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4759]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4758]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4760]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4759]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4761]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4760]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4762]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4761]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4763]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4762]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4764]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4763]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4765]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4764]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4766]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4765]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4767]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4766]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4768]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4767]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4769]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4768]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4770]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4769]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4771]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4770]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4772]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4771]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4773]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4772]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4774]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4773]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4775]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4774]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4776]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4775]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4777]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4776]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4778]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4777]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4779]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4778]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4780]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4779]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4781]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4780]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4782]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4781]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4783]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4782]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4784]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4783]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4785]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4784]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4786]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4785]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4787]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4786]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4788]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4787]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4789]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4788]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4790]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4789]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4791]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4790]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4792]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4791]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4793]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4792]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4794]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4793]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4795]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4794]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4796]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4795]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4797]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4796]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4798]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4797]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4799]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4798]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4800]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4799]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4801]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4800]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4802]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4801]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4803]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4802]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4804]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4803]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4805]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4804]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4806]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4805]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4807]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4806]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4808]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4807]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4809]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4808]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4810]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4809]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4811]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4810]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4812]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4811]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4813]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4812]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4814]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4813]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4815]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4814]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4816]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4815]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4817]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4816]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4818]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4817]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4819]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4818]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4820]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4819]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4821]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4820]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4822]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4821]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4823]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4822]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4824]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4823]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4825]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4824]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4826]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4825]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4827]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4826]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4828]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4827]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4829]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4828]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4830]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4829]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4831]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4830]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4832]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4831]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4833]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4832]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4834]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4833]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4835]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4834]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4836]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4835]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4837]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4836]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4838]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4837]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4839]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4838]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4840]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4839]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4841]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4841]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4842]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4840]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4843]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4842]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4844]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4843]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4845]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4844]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4846]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4845]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4847]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4846]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4848]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4847]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4849]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4848]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4850]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4849]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4851]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4850]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4852]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4851]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4853]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4852]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4854]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4853]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4855]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4854]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4856]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4855]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4857]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4856]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4858]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4857]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4859]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4858]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4860]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4859]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4861]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4860]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4862]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4861]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4862]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4863]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4864]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4863]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4865]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4864]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4866]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4865]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4866]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4867]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4868]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4867]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4869]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4868]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4870]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4869]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4871]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4870]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4872]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4871]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4873]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4872]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4874]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4873]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4874]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4875]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4876]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4875]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4877]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4876]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4878]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4877]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4878]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4879]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4880]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4879]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4881]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4880]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4882]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4881]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4882]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4883]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4884]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4883]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4885]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4884]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4886]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4885]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4887]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4886]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4888]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4887]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4889]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4888]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4890]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4889]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4890]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4891]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4892]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4891]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4893]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4892]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4894]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4893]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4894]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4895]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4896]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4895]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4896]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4898]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4897]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4898]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4899]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4897]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4900]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4899]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4901]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4900]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4902]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4901]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4903]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4902]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4904]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4903]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4905]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4904]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4906]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4905]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4907]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4906]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4908]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4907]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4909]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4908]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4910]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4909]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4911]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4910]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4912]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4911]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4913]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4912]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4914]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4913]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4915]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4914]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4916]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4915]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4917]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4916]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4918]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4917]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4919]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4918]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4920]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4919]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4921]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4920]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4922]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4921]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4923]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4922]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4924]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4923]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4925]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4924]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4926]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4925]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4927]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4926]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4928]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4927]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4929]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4928]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4930]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4929]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4931]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4930]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4932]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4931]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4933]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4932]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4934]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4933]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4935]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4934]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4936]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4935]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4937]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4936]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4938]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4937]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4939]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4938]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4940]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4939]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4941]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4940]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4942]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4941]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4943]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4942]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4944]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4943]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4945]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4944]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4946]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4945]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4947]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4946]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4948]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4947]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4949]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4948]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4950]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4949]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4951]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4950]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4952]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4951]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4953]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4952]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4954]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4953]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4955]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4954]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4956]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4955]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4957]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4956]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4958]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4957]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4959]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4958]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4960]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4959]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4961]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4960]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4962]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4961]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4963]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4962]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4964]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4963]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4965]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4964]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4966]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4965]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4967]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4966]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4968]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4967]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4969]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4968]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4970]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4969]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4971]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4970]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4972]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4971]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4973]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4972]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4974]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4973]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4975]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4974]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4976]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4975]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4977]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4976]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4978]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4977]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 4979]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4978]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 4980]]} + {:process 4 :type :fail :f :txn :value [[:append 1 4979]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4981]]} + {:process 6 :type :fail :f :txn :value [[:append 0 4980]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4982]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4981]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 4983]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4982]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 4984]]} + {:process 4 :type :fail :f :txn :value [[:append 6 4983]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4985]]} + {:process 6 :type :fail :f :txn :value [[:append 3 4984]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4986]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4985]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 4987]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4986]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 4988]]} + {:process 4 :type :fail :f :txn :value [[:append 3 4987]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4989]]} + {:process 6 :type :fail :f :txn :value [[:append 2 4988]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 4990]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4989]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 4991]]} + {:process 6 :type :fail :f :txn :value [[:append 7 4990]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 4992]]} + {:process 4 :type :fail :f :txn :value [[:append 0 4991]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 4993]]} + {:process 6 :type :fail :f :txn :value [[:append 5 4992]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 4994]]} + {:process 4 :type :fail :f :txn :value [[:append 7 4993]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 4995]]} + {:process 6 :type :fail :f :txn :value [[:append 6 4994]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 4996]]} + {:process 4 :type :fail :f :txn :value [[:append 5 4995]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 4997]]} + {:process 6 :type :fail :f :txn :value [[:append 4 4996]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 4998]]} + {:process 4 :type :fail :f :txn :value [[:append 4 4997]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 4999]]} + {:process 6 :type :fail :f :txn :value [[:append 1 4998]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 4999]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5000]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5001]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5000]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5002]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5001]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5003]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5002]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5004]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5003]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5005]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5004]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5006]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5005]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5007]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5006]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5008]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5007]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5009]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5008]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5010]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5009]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5010]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5011]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5012]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5011]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5013]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5012]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5014]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5013]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5015]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5014]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5016]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5015]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5017]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5016]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5018]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5017]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5019]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5018]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5020]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5019]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5021]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5020]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5022]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5021]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5023]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5022]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5024]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5023]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5025]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5024]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5026]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5025]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5027]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5026]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5028]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5027]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5029]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5028]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5030]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5029]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5031]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5030]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5032]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5031]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5033]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5032]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5034]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5033]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5035]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5034]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5036]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5035]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5037]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5036]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5038]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5037]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5039]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5038]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5040]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5039]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5041]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5040]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5042]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5041]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5043]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5042]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5044]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5043]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5045]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5044]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5046]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5045]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5047]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5046]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5048]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5047]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5049]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5048]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5050]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5049]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5051]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5050]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5052]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5051]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5053]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5052]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5054]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5053]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5055]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5054]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5056]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5055]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5057]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5056]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5058]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5057]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5059]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5058]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5060]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5059]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5061]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5060]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5062]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5061]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5063]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5062]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5064]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5063]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5065]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5064]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5066]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5065]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5067]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5066]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5068]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5067]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5069]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5068]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5070]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5069]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5071]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5070]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5072]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5071]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5073]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5072]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5074]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5073]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5075]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5074]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5076]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5075]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5077]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5076]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5078]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5077]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5079]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5078]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5080]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5079]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5081]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5080]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5082]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5081]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5083]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5082]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5084]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5083]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5085]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5084]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5086]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5085]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5087]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5086]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5088]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5087]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5089]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5088]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5090]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5089]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5091]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5090]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5092]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5091]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5093]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5092]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5094]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5093]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5095]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5094]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5096]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5095]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5097]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5096]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5098]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5097]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5099]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5098]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5100]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5099]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5101]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5100]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5102]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5101]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5103]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5102]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5104]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5103]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5105]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5104]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5106]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5105]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5107]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5106]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5108]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5107]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5109]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5108]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5110]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5109]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5111]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5110]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5112]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5111]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5113]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5112]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5114]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5113]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5115]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5114]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5116]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5115]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5117]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5116]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5118]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5117]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5119]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5118]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5120]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5119]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5121]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5120]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5122]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5121]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5123]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5122]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5124]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5123]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5125]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5124]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5126]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5125]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5127]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5126]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5128]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5127]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5129]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5128]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5130]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5129]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5131]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5130]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5132]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5131]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5133]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5132]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5134]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5133]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5135]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5134]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5136]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5135]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5137]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5136]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5138]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5137]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5139]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5138]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5140]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5139]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5141]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5140]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5142]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5141]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5143]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5142]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5144]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5143]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5145]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5144]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5146]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5145]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5147]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5146]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5148]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5147]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5149]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5148]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5150]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5149]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5151]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5150]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5152]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5151]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5153]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5152]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5154]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5153]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5155]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5154]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5156]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5155]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5157]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5156]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5158]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5157]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5159]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5158]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5160]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5159]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5161]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5160]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5162]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5161]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5163]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5162]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5164]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5163]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5165]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5164]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5166]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5165]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5167]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5166]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5168]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5167]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5169]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5168]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5170]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5169]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5171]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5170]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5172]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5171]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5173]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5172]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5174]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5173]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5175]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5174]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5176]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5175]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5177]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5176]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5178]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5177]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5179]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5178]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5180]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5179]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5181]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5180]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5181]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5182]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5183]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5182]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5183]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5184]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5185]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5184]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5186]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5185]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5187]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5186]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5188]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5187]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5189]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5188]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5190]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5189]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5191]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5190]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5192]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5191]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5193]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5192]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5194]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5193]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5195]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5194]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5196]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5195]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5196]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5197]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5198]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5197]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5199]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5198]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5200]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5199]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5200]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5201]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5202]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5201]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5203]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5202]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5204]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5203]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5204]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5205]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5206]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5205]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5207]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5206]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5208]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5207]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5208]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5209]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5210]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5209]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5211]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5210]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5212]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5211]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5213]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5212]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5214]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5213]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5215]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5214]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5216]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5215]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5217]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5216]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5218]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5217]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5219]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5218]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5220]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5219]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5221]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5220]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5222]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5221]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5223]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5222]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5224]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5223]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5224]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5225]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5226]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5225]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5227]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5226]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5228]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5227]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5228]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5229]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5230]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5229]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5230]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5232]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5231]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5232]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5233]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5231]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5234]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5233]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5235]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5234]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5236]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5235]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5237]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5236]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5237]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5239]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5238]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5239]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5240]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5238]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5241]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5240]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5242]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5241]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5242]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5243]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5244]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5243]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5245]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5244]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5246]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5246]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5247]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5245]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5247]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5248]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5248]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5249]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5250]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5250]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5251]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5249]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5252]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5251]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5253]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5252]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5253]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5254]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5255]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5254]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5256]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5255]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5257]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5256]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5258]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5257]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5259]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5258]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5260]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5259]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5261]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5260]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5262]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5262]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5263]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5261]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5263]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5264]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5265]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5264]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5266]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5265]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5267]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5266]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5268]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5268]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5269]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5267]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5269]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5270]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5271]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5270]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5272]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5271]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5273]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5272]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5274]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5273]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5275]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5274]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5276]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5275]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5277]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5276]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5278]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5277]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5279]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5278]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5280]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5279]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5281]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5280]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5282]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5281]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5282]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5283]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5284]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5283]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5285]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5284]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5286]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5285]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5286]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5287]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5288]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5287]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5289]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5288]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5290]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5289]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5290]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5291]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5292]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5291]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5293]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5292]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5294]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5293]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5294]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5295]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5295]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5296]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5297]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5297]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5298]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5296]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5299]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5298]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5300]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5299]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5300]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5301]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5302]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5301]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5303]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5302]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5304]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5303]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5305]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5304]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5306]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5305]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5307]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5306]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5308]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5307]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5308]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5309]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5310]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5309]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5311]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5310]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5312]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5311]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5312]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5313]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5314]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5313]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5315]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5314]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5316]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5315]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5317]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5316]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5318]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5317]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5319]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5318]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5320]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5319]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5321]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5320]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5322]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5321]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5323]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5322]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5324]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5323]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5324]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5325]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5326]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5325]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5327]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5326]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5328]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5327]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5328]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5330]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5330]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5331]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5329]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5331]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5332]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5329]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5333]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5332]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5334]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5333]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5335]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5334]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5336]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5335]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5337]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5336]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5338]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5337]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5338]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5339]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5340]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5339]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5341]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5340]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5342]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5341]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5342]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5343]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5344]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5343]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5345]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5344]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5346]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5345]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5346]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5347]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5348]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5347]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5349]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5348]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5350]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5349]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5350]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5351]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5352]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5351]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5353]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5352]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5354]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5353]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5354]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5355]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5356]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5356]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5357]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5355]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5358]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5357]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5359]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5358]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5359]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5360]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5361]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5360]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5362]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5361]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5363]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5362]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5364]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5364]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5365]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5363]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5365]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5366]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5367]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5366]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5368]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5367]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5368]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5369]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5370]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5370]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5371]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5369]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5371]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5372]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5373]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5372]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5374]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5373]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5375]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5374]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5376]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5376]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5377]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5375]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5377]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5378]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5379]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5378]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5380]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5379]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5381]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5380]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5382]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5382]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5383]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5381]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5383]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5385]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5384]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5385]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5386]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5384]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5387]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5386]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5388]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5388]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5389]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5387]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5390]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5389]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5391]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5390]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5392]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5391]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5393]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5392]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5394]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5393]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5395]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5394]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5396]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5395]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5397]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5396]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5398]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5397]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5399]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5398]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5400]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5399]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5401]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5400]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5402]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5401]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5403]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5402]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5404]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5404]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5403]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5405]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5406]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5405]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5407]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5406]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5408]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5407]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5409]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5408]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5409]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5410]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5411]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5410]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5411]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5412]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5413]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5412]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5414]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5413]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5415]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5414]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5416]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5415]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5417]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5416]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5418]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5417]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5419]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5418]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5420]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5419]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5420]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5421]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5422]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5421]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5423]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5422]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5424]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5423]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5424]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5425]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5426]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5425]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5427]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5426]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5428]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5427]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5429]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5428]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5430]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5429]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5431]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5430]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5432]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5431]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5432]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5433]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5434]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5433]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5435]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5434]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5436]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5435]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5436]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5437]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5438]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5437]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5439]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5438]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5440]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5439]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5441]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5440]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5442]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5441]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5443]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5442]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5444]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5443]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5445]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5444]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5446]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5445]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5447]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5446]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5448]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5447]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5449]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5448]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5450]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5449]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5451]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5450]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5452]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5451]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5453]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5452]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5454]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5453]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5455]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5454]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5456]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5455]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5457]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5456]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5458]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5457]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5459]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5458]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5460]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5459]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5461]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5460]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5462]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5461]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5463]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5462]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5464]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5463]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5465]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5464]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5465]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5466]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5467]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5466]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5468]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5467]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5469]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5468]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5470]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5469]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5471]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5470]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5472]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5471]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5473]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5472]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5474]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5473]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5474]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5475]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5476]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5475]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5477]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5476]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5478]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5477]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5478]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5479]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5480]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5479]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5481]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5480]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5482]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5481]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5482]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5483]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5484]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5483]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5485]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5484]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5486]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5485]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5486]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5487]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5488]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5487]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5489]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5488]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5490]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5489]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5491]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5490]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5492]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5491]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5493]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5492]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5494]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5493]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5495]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5494]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5496]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5495]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5497]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5496]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5498]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5497]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5498]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5499]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5500]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5499]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5501]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5500]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5502]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5502]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5503]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5501]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5504]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5503]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5505]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5505]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5506]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5504]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5507]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5506]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5508]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5507]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5508]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5509]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5510]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5509]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5511]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5510]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5512]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5511]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5513]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5512]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5514]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5513]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5515]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5514]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5516]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5515]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5516]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5517]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5518]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5517]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5519]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5518]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5520]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5519]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5521]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5520]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5522]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5521]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5522]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5524]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5523]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5524]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5525]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5523]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5526]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5525]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5527]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5526]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5528]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5527]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5529]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5528]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5530]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5529]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5531]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5530]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5532]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5531]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5533]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5532]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5533]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5535]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5534]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5534]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5536]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5535]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5537]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5537]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5538]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5536]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5538]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5539]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5540]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5539]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5541]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5540]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5542]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5541]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5542]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5543]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5544]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5543]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5545]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5544]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5546]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5545]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5546]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5547]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5548]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5547]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5548]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5550]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5549]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5550]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5551]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5549]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5552]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5551]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5553]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5552]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5554]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5553]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5555]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5554]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5556]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5555]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5557]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5556]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5558]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5557]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5559]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5558]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5560]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5559]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5561]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5560]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5562]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5561]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5563]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5563]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5564]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5564]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5565]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5565]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5566]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5562]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5566]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5567]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5568]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5567]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5569]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5568]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5570]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5569]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5570]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5571]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5572]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5571]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5573]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5572]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5574]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5573]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5575]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5574]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5576]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5575]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5577]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5576]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5578]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5577]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5578]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5580]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5580]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5581]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5581]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5579]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5582]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5579]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5583]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5582]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5584]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5583]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5584]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5585]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5586]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5585]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5587]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5586]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5588]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5587]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5588]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5589]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5590]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5589]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5591]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5590]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5592]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5591]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5592]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5593]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5594]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5593]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5595]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5594]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5596]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5595]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5596]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5597]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5598]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5597]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5599]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5598]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5600]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5599]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5600]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5601]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5602]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5601]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5603]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5602]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5604]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5603]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5604]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5605]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5606]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5605]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5607]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5606]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5608]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5607]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5608]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5609]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5610]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5609]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5611]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5610]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5612]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5611]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5613]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5612]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5614]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5613]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5615]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5614]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5616]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5615]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5616]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5617]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5618]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5617]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5619]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5619]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5620]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5618]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5621]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5620]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5622]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5621]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5623]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5622]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5624]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5623]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5625]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5624]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5626]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5625]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5627]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5626]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5628]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5627]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5629]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5628]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5630]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5629]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5631]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5630]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5632]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5631]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5633]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5632]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5634]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5633]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5635]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5634]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5636]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5636]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5635]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5637]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5638]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5637]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5638]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5639]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5640]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5639]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5641]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5640]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5642]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5641]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5642]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5643]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5644]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5643]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5645]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5644]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5646]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5645]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5646]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5647]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5648]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5647]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5649]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5648]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5650]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5649]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5650]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5651]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5652]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5651]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5653]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5652]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5654]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5653]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5654]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5655]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5656]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5655]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5657]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5656]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5658]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5657]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5658]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5659]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5660]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5659]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5661]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5660]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5662]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5661]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5663]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5662]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5664]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5663]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5665]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5664]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5666]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5665]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5667]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5666]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5668]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5667]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5669]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5668]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5670]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5669]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5671]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5670]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5672]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5671]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5673]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5672]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5674]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5673]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5675]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5674]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5676]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5675]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5677]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5676]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5678]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5677]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5679]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5678]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5680]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5679]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5681]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5680]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5682]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5681]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5683]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5682]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5684]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5683]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5685]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5684]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5686]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5685]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5687]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5686]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5688]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5687]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5689]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5688]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5690]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5689]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5690]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5691]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5692]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5691]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5693]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5692]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5693]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5694]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5695]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5694]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5696]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5695]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5697]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5696]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5698]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5697]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5698]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5699]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5700]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5699]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5701]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5700]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5702]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5701]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5702]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5703]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5704]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5703]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5705]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5704]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5706]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5705]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5706]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5707]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5708]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5707]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5709]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5708]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5710]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5709]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5710]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5711]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5712]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5711]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5713]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5712]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5714]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5713]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5714]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5715]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5716]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5715]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5717]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5716]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5718]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5717]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5718]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5719]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5720]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5719]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5721]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5720]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5722]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5721]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5722]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5723]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5724]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5723]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5725]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5724]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5726]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5725]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5726]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5727]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5728]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5727]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5729]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5728]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5730]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5729]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5730]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5731]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5732]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5731]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5733]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5732]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5734]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5733]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5734]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5735]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5736]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5735]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5737]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5736]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5738]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5737]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5739]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5738]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5740]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5739]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5741]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5740]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5742]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5741]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5743]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5742]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5744]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5743]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5745]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5744]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5746]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5745]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5747]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5746]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5748]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5747]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5749]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5748]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5750]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5749]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5750]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5751]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5752]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5751]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5753]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5752]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5754]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5753]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5755]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5754]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5756]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5755]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5757]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5756]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5758]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5757]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5759]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5758]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5760]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5759]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5761]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5760]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5762]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5761]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5763]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5762]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5764]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5763]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5765]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5764]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5766]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5765]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5767]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5766]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5768]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5767]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5769]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5768]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5770]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5769]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5771]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5770]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5772]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5771]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5773]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5772]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5774]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5773]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5775]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5774]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5776]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5775]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5777]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5776]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5778]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5777]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5779]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5778]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5780]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5779]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5781]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5780]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5782]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5781]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5783]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5782]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5784]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5783]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5785]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5784]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5786]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5785]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5787]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5786]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5788]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5787]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5789]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5788]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5790]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5789]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5791]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5790]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5792]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5791]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5793]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5792]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5794]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5793]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5795]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5794]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5796]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5795]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5797]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5796]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5798]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5797]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5799]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5798]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5800]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5799]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5801]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5800]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5802]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5801]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5803]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5802]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5804]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5803]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5805]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5804]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5806]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5805]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5807]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5806]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5808]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5807]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5809]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5808]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5810]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5809]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5811]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5810]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5812]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5811]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5813]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5812]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5814]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5813]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5815]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5814]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5816]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5815]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5817]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5816]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5818]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5817]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5819]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5818]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5820]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5819]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5821]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5820]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5822]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5821]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5823]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5822]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5824]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5823]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5825]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5824]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5826]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5825]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5827]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5826]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5828]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5827]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5829]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5828]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5830]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5829]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5831]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5830]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5832]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5831]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5833]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5832]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5834]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5833]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5835]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5834]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5836]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5835]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5837]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5836]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5838]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5837]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5839]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5838]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5840]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5839]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5841]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5840]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5842]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5841]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5843]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5842]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5844]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5843]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5845]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5844]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5846]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5845]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5847]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5846]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5848]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5847]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5849]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5848]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5850]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5849]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5851]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5850]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5852]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5851]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5853]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5852]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5854]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5853]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5855]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5854]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5856]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5855]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5857]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5856]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5858]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5857]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5859]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5858]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5860]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5859]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5861]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5860]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5862]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5861]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5862]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5863]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5863]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5864]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5865]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5864]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5866]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5865]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5867]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5866]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5868]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5867]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5869]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5868]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5870]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5869]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5871]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5870]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5872]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5871]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5873]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5872]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5874]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5873]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5875]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5874]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5876]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5875]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5877]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5876]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5878]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5877]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5879]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5878]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5880]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5879]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5881]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5880]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5882]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5881]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5883]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5882]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5884]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5883]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5885]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5884]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5886]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5885]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5887]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5886]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5888]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5887]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5889]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5888]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5890]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5889]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5891]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5890]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5892]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5891]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5893]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5892]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5894]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5893]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5895]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5894]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5896]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5895]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5897]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5896]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5898]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5897]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5899]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5898]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5900]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5899]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5901]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5900]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5902]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5901]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5903]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5902]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5904]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5903]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5905]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5904]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5906]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5905]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5907]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5906]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5908]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5907]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5909]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5908]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5910]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5909]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5911]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5910]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5912]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5911]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5913]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5912]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5914]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5913]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5915]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5914]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5916]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5915]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5917]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5916]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5918]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5917]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5919]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5918]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5920]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5919]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5920]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5921]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5922]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5921]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5923]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5922]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5924]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5923]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5925]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5924]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5926]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5925]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5927]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5926]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5928]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5927]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5929]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5928]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5930]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5929]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5931]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5930]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5932]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5931]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5933]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5932]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5934]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5933]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5935]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5934]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5936]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5935]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5937]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5936]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5938]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5937]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5939]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5938]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5940]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5939]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5941]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5940]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5942]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5941]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5943]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5942]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5944]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5943]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5945]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5944]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5946]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5945]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5947]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5946]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5948]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5947]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5949]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5948]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5950]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5949]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5951]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5950]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5952]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5951]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5953]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5952]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5954]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5953]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5955]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5954]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5956]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5955]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5957]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5956]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5958]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5957]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5959]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5958]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5960]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5959]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5961]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5960]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5962]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5961]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5963]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5962]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5964]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5963]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5965]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5964]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5966]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5965]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5967]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5966]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5968]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5967]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5969]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5968]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5970]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5969]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5971]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5970]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5972]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5971]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5973]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5972]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5974]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5973]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5975]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5974]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5976]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5975]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5977]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5976]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5978]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5977]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 5979]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5978]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 5979]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5980]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 5981]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5980]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 5982]]} + {:process 6 :type :fail :f :txn :value [[:append 3 5981]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5983]]} + {:process 4 :type :fail :f :txn :value [[:append 5 5982]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5984]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5983]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 5985]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5984]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 5986]]} + {:process 6 :type :fail :f :txn :value [[:append 2 5985]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5987]]} + {:process 4 :type :fail :f :txn :value [[:append 2 5986]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5988]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5987]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 5989]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5988]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 5990]]} + {:process 6 :type :fail :f :txn :value [[:append 5 5989]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 5991]]} + {:process 4 :type :fail :f :txn :value [[:append 7 5990]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 5992]]} + {:process 6 :type :fail :f :txn :value [[:append 6 5991]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 5993]]} + {:process 4 :type :fail :f :txn :value [[:append 6 5992]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 5994]]} + {:process 6 :type :fail :f :txn :value [[:append 4 5993]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 5995]]} + {:process 4 :type :fail :f :txn :value [[:append 4 5994]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 5996]]} + {:process 6 :type :fail :f :txn :value [[:append 1 5995]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 5997]]} + {:process 4 :type :fail :f :txn :value [[:append 3 5996]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 5998]]} + {:process 6 :type :fail :f :txn :value [[:append 7 5997]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 5999]]} + {:process 4 :type :fail :f :txn :value [[:append 1 5998]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6000]]} + {:process 6 :type :fail :f :txn :value [[:append 0 5999]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6000]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6001]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6002]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6001]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6003]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6002]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6004]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6003]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6004]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6005]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6006]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6005]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6007]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6006]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6008]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6007]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6008]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6009]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6010]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6009]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6011]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6010]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6012]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6011]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6012]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6013]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6014]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6013]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6015]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6014]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6016]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6015]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6016]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6017]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6018]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6017]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6019]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6018]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6020]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6019]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6020]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6021]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6022]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6021]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6023]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6022]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6024]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6023]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6024]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6025]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6026]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6025]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6027]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6026]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6028]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6027]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6029]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6028]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6030]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6029]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6031]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6030]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6032]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6031]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6033]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6032]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6034]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6033]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6034]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6035]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6036]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6035]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6037]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6036]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6038]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6037]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6039]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6038]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6040]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6039]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6041]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6040]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6042]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6041]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6043]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6042]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6044]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6043]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6045]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6044]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6046]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6045]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6047]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6046]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6048]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6047]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6049]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6048]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6050]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6049]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6051]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6050]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6052]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6051]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6053]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6052]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6054]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6053]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6055]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6054]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6056]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6055]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6057]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6056]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6058]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6057]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6059]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6058]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6060]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6059]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6061]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6060]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6062]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6061]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6063]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6062]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6064]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6063]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6065]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6064]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6066]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6065]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6067]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6066]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6068]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6067]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6069]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6068]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6070]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6069]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6071]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6070]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6072]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6071]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6073]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6072]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6074]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6073]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6075]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6074]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6076]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6075]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6077]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6076]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6078]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6077]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6079]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6078]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6080]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6079]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6081]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6080]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6082]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6081]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6083]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6082]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6084]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6083]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6085]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6084]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6086]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6085]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6087]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6086]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6088]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6087]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6089]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6088]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6090]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6089]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6091]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6090]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6092]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6092]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6091]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6093]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6094]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6093]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6095]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6094]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6096]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6095]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6097]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6096]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6098]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6097]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6099]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6098]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6100]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6099]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6101]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6100]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6102]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6101]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6103]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6102]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6104]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6103]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6104]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6105]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6106]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6105]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6107]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6106]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6108]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6107]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6108]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6109]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6110]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6109]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6111]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6110]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6112]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6111]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6112]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6113]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6114]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6113]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6115]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6114]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6116]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6115]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6116]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6117]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6118]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6117]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6119]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6118]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6120]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6119]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6120]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6121]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6122]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6121]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6123]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6122]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6124]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6123]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6124]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6125]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6126]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6125]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6127]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6126]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6128]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6127]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6128]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6129]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6130]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6129]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6131]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6130]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6132]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6131]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6133]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6132]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6134]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6133]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6135]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6134]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6136]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6135]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6136]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6137]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6138]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6137]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6139]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6138]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6140]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6139]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6140]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6141]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6142]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6141]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6143]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6142]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6144]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6143]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6144]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6145]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6146]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6145]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6147]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6146]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6148]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6147]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6149]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6148]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6150]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6149]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6151]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6150]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6152]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6151]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6152]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6153]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6154]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6153]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6155]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6154]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6156]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6155]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6156]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6157]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6158]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6157]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6159]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6158]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6160]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6159]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6160]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6161]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6162]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6161]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6163]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6162]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6164]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6163]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6164]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6165]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6166]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6165]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6167]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6166]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6168]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6167]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6168]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6169]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6170]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6169]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6171]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6170]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6172]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6171]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6173]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6172]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6174]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6173]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6175]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6174]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6176]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6175]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6176]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6177]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6178]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6177]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6179]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6178]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6180]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6179]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6181]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6180]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6182]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6181]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6183]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6182]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6184]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6183]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6184]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6185]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6186]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6185]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6187]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6186]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6188]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6187]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6188]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6189]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6190]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6189]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6191]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6190]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6192]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6191]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6192]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6193]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6194]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6193]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6195]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6194]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6196]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6195]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6197]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6196]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6198]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6197]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6199]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6198]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6200]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6199]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6201]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6200]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6202]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6201]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6203]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6202]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6204]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6203]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6204]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6205]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6206]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6205]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6207]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6206]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6208]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6207]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6208]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6209]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6210]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6209]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6211]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6210]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6212]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6211]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6212]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6213]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6214]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6213]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6215]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6214]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6216]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6215]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6217]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6216]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6218]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6217]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6219]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6218]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6220]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6219]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6221]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6220]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6222]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6221]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6223]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6222]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6224]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6223]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6225]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6224]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6226]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6225]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6227]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6226]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6228]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6227]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6229]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6228]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6230]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6229]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6231]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6230]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6232]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6231]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6232]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6233]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6234]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6233]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6235]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6234]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6236]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6235]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6236]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6237]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6238]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6237]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6238]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6240]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6239]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6240]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6241]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6239]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6242]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6241]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6243]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6242]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6244]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6243]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6245]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6244]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6246]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6245]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6247]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6246]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6248]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6247]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6249]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6248]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6250]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6249]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6251]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6250]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6252]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6251]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6253]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6252]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6254]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6253]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6255]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6254]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6256]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6255]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6257]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6256]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6258]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6257]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6259]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6258]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6260]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6259]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6261]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6260]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6261]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6263]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6262]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6263]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6264]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6262]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6265]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6264]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6266]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6265]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6266]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6267]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6268]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6267]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6269]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6268]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6270]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6269]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6270]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6271]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6272]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6271]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6273]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6272]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6274]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6273]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6274]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6275]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6276]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6275]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6277]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6276]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6278]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6277]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6278]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6279]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6280]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6279]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6281]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6280]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6282]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6281]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6282]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6283]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6284]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6283]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6285]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6284]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6286]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6285]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6286]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6287]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6288]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6287]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6289]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6288]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6290]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6289]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6290]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6291]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6292]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6291]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6293]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6292]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6294]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6293]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6295]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6294]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6296]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6295]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6297]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6296]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6298]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6297]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6299]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6298]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6300]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6299]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6301]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6300]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6302]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6301]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6303]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6302]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6304]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6303]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6305]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6304]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6306]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6305]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6306]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6307]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6308]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6307]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6309]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6309]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6310]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6308]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6311]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6310]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6312]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6311]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6313]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6312]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6314]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6313]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6315]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6314]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6316]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6315]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6317]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6316]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6318]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6317]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6319]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6319]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6318]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6320]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6321]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6320]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6321]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6322]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6323]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6322]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6324]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6323]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6325]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6324]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6326]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6325]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6327]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6326]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6328]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6327]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6329]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6328]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6330]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6329]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6331]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6330]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6332]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6331]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6333]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6332]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6334]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6333]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6335]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6334]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6336]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6335]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6337]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6336]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6338]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6337]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6339]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6338]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6340]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6339]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6341]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6340]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6342]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6341]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6343]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6342]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6344]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6343]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6345]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6344]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6346]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6345]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6347]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6346]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6348]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6347]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6349]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6348]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6350]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6349]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6351]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6350]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6352]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6351]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6353]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6352]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6354]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6353]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6355]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6354]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6356]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6355]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6357]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6356]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6358]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6357]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6359]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6358]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6360]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6359]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6361]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6360]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6362]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6361]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6363]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6363]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6364]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6364]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6365]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6362]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6366]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6365]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6367]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6367]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6368]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6366]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6369]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6368]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6370]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6369]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6371]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6370]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6372]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6371]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6372]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6373]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6374]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6373]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6375]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6374]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6376]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6375]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6376]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6377]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6378]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6377]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6379]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6378]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6380]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6379]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6381]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6380]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6382]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6381]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6383]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6382]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6384]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6383]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6385]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6384]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6386]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6385]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6387]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6386]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6388]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6387]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6389]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6388]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6390]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6389]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6391]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6390]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6392]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6391]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6393]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6392]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6394]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6393]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6395]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6394]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6396]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6396]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6397]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6395]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6398]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6397]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6399]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6398]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6400]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6399]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6400]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6401]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6402]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6401]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6403]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6402]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6404]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6403]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6404]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6405]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6406]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6405]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6407]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6406]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6408]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6407]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6408]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6409]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6410]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6409]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6411]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6410]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6412]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6411]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6412]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6413]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6414]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6413]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6415]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6414]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6416]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6415]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6416]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6417]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6418]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6417]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6419]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6418]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6420]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6419]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6421]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6420]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6422]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6421]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6423]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6422]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6424]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6423]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6424]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6425]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6426]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6425]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6427]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6426]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6428]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6427]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6429]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6428]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6430]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6429]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6431]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6430]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6432]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6431]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6432]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6433]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6434]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6433]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6435]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6434]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6436]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6435]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6437]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6436]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6438]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6437]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6439]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6438]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6440]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6439]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6441]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6440]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6442]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6441]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6443]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6442]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6444]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6443]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6445]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6444]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6446]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6445]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6447]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6446]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6448]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6447]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6449]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6448]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6450]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6449]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6451]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6450]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6452]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6451]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6453]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6452]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6454]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6453]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6455]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6454]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6456]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6456]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6457]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6455]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6458]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6457]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6459]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6458]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6460]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6459]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6460]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6461]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6462]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6461]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6463]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6462]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6464]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6463]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6464]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6465]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6466]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6465]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6467]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6466]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6468]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6467]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6468]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6469]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6470]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6469]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6471]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6470]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6472]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6471]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6472]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6473]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6474]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6473]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6475]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6474]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6476]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6475]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6477]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6476]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6478]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6477]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6479]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6478]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6480]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6479]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6480]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6481]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6482]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6481]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6483]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6482]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6484]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6483]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6484]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6485]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6486]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6485]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6487]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6487]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6488]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6486]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6489]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6488]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6490]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6489]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6491]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6490]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6492]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6491]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6493]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6492]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6494]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6493]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6495]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6494]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6496]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6495]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6497]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6496]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6498]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6497]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6499]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6498]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6500]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6499]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6501]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6500]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6502]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6501]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6503]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6502]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6504]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6503]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6505]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6504]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6506]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6505]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6507]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6506]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6508]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6507]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6509]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6508]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6510]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6509]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6511]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6511]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6512]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6510]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6513]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6512]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6514]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6513]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6515]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6514]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6516]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6516]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6517]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6515]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6518]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6517]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6519]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6518]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6520]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6519]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6521]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6520]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6522]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6521]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6523]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6522]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6524]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6523]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6525]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6524]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6526]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6525]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6527]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6526]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6528]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6527]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6529]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6528]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6530]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6529]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6531]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6530]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6532]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6531]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6533]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6532]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6534]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6533]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6535]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6534]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6536]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6535]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6537]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6536]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6538]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6537]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6539]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6538]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6540]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6539]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6541]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6540]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6542]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6541]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6543]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6542]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6544]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6544]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6545]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6543]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6546]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6545]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6547]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6546]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6548]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6547]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6549]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6548]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6550]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6549]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6551]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6550]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6552]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6551]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6553]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6552]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6554]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6553]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6555]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6554]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6556]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6555]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6556]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6557]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6558]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6557]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6559]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6558]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6560]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6559]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6561]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6560]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6562]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6561]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6563]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6562]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6564]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6563]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6565]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6564]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6566]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6565]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6567]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6566]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6568]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6567]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6568]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6569]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6570]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6569]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6571]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6570]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6572]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6571]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6573]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6573]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6574]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6574]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6575]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6575]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6576]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6576]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6577]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6577]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6578]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6572]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6579]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6579]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6580]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6578]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6581]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6581]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6582]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6580]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6583]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6582]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6584]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6583]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6585]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6584]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6586]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6585]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6587]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6586]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6588]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6587]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6589]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6588]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6590]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6589]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6591]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6590]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6592]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6591]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6593]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6592]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6594]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6593]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6595]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6594]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6596]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6595]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6597]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6596]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6598]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6597]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6599]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6598]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6600]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6600]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6601]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6599]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6602]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6602]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6603]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6603]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6601]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6604]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6605]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6604]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6606]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6605]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6607]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6606]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6608]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6607]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6608]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6609]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6610]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6609]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6611]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6610]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6612]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6611]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6613]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6612]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6614]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6613]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6615]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6614]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6616]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6615]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6617]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6616]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6618]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6617]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6619]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6618]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6620]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6619]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6620]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6621]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6622]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6621]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6623]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6622]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6624]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6623]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6625]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6624]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6626]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6625]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6627]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6626]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6628]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6627]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6628]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6629]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6630]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6629]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6631]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6631]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6630]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6632]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6633]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6633]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6634]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6632]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6635]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6634]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6636]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6635]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6637]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6636]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6638]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6637]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6639]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6638]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6640]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6639]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6641]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6640]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6642]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6641]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6643]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6642]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6644]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6643]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6645]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6644]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6646]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6645]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6647]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6646]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6648]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6647]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6649]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6648]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6650]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6649]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6651]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6650]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6652]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6651]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6653]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6652]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6654]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6653]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6655]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6654]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6656]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6655]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6657]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6656]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6658]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6658]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6659]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6657]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6660]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6659]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6661]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6660]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6662]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6661]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6662]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6663]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6664]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6663]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6665]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6664]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6666]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6665]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6666]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6667]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6668]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6667]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6669]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6668]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6670]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6669]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6670]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6671]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6672]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6671]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6673]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6672]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6674]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6673]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6675]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6674]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6676]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6675]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6677]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6676]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6678]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6677]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6678]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6679]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6680]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6679]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6681]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6680]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6682]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6681]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6682]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6683]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6684]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6683]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6685]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6684]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6686]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6686]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6687]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6685]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6688]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6687]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6689]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6688]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6690]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6689]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6691]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6690]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6692]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6691]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6693]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6692]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6694]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6693]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6695]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6694]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6696]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6695]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6697]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6696]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6698]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6697]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6699]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6698]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6700]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6699]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6701]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6700]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6702]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6701]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6703]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6702]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6703]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6704]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6705]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6704]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6706]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6705]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6707]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6706]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6708]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6707]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6709]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6708]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6710]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6709]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6711]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6710]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6712]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6711]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6713]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6712]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6714]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6713]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6715]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6714]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6716]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6715]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6717]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6716]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6718]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6717]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6719]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6719]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6720]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6718]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6721]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6721]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6722]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6722]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6723]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6720]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6724]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6723]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6725]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6724]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6726]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6725]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6726]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6727]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6728]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6727]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6729]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6728]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6730]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6729]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6730]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6731]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6732]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6731]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6733]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6732]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6734]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6733]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6734]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6735]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6736]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6735]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6737]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6736]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6738]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6737]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6739]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6738]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6740]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6739]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6741]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6740]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6742]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6741]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6743]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6742]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6744]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6743]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6745]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6745]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6746]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6744]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6747]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6746]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6748]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6747]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6749]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6748]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6750]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6749]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6751]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6750]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6752]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6751]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6753]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6752]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6754]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6753]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6755]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6754]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6756]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6755]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6757]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6756]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6758]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6757]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6759]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6758]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6760]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6759]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6761]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6760]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6762]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6761]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6763]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6762]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6764]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6763]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6765]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6764]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6766]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6765]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6767]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6766]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6768]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6767]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6769]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6768]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6770]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6769]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6771]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6770]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6772]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6771]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6773]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6772]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6773]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6774]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6775]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6774]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6776]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6776]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6777]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6775]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6778]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6777]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6779]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6778]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6780]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6779]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6780]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6781]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6782]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6781]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6783]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6782]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6784]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6783]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6784]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6785]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6786]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6785]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6787]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6786]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6788]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6787]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6788]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6789]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6790]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6789]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6791]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6790]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6792]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6791]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6793]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6792]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6794]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6793]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6795]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6794]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6796]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6795]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6796]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6797]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6798]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6797]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6799]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6798]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6800]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6799]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6801]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6800]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6802]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6801]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6803]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6803]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6804]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6802]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6805]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6804]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6806]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6805]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6807]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6806]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6808]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6807]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6809]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6808]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6810]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6809]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6811]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6810]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6812]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6811]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6813]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6812]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6814]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6813]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6815]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6814]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6816]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6815]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6817]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6816]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6818]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6817]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6819]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6818]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6820]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6819]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6821]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6820]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6822]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6821]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6823]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6822]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6824]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6823]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6825]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6824]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6826]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6825]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6827]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6826]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6828]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6827]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6829]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6828]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6830]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6830]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6831]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6829]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6832]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6831]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6833]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6832]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6834]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6833]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6834]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6835]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6836]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6835]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6837]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6836]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6838]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6837]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6838]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6839]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6840]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6839]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6841]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6840]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6842]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6841]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6842]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6843]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6844]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6843]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6845]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6844]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6846]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6845]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6846]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6847]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6848]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6847]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6849]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6848]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6850]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6849]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6850]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6851]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6852]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6851]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6853]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6852]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6854]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6853]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6854]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6855]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6856]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6855]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6857]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6857]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6858]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6856]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6859]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6859]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6860]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6858]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6861]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6860]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6862]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6861]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6863]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6862]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6864]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6863]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6865]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6864]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6866]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6865]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6867]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6866]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6868]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6867]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6869]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6868]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6870]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6869]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6870]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6871]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6872]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6871]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6873]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6872]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6874]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6873]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6874]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6875]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6876]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6875]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6877]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6876]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6878]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6877]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6878]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6879]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6880]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6879]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6881]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6880]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6882]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6881]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6882]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6883]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6884]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6883]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6885]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6884]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6886]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6885]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6887]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6886]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6888]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6887]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6889]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6889]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6890]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6888]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6891]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6890]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6892]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6891]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6893]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6892]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6894]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6893]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6895]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6894]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6896]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6895]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6897]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6896]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6898]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6897]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6899]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6898]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6900]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6899]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6901]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6900]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6902]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6901]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6903]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6902]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6904]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6903]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6905]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6904]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6906]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6905]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6907]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6906]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6908]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6907]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6909]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6908]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6910]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6909]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6911]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6910]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6912]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6911]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6913]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6912]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6914]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6913]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6915]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6914]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6916]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6915]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6917]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6916]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6918]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6918]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6919]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6917]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6920]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6920]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6921]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6919]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6922]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6922]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6923]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6921]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6924]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6924]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6925]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6923]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6925]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6926]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6927]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6927]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6928]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6926]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6929]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6928]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6930]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6929]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6931]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6930]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6932]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6931]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6933]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6932]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6934]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6933]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6935]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6934]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6936]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6935]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6937]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6936]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6938]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6937]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6939]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6938]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6940]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6939]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6941]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6940]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6942]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6941]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6943]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6942]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6944]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6943]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6944]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6945]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6946]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6945]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6947]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6947]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6948]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6946]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6949]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6948]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6950]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6949]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6950]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6951]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6952]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6951]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6953]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6952]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6954]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6953]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6954]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6955]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6956]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6955]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6957]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6956]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6958]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6957]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6958]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6959]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6960]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6959]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6961]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6960]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6962]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6961]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6962]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6963]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6964]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6963]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6965]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6964]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6966]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6965]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6966]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6967]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6968]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6967]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6969]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6968]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6970]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6969]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6971]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6970]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6972]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6971]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6973]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6972]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6974]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6973]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6975]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6974]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6976]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6975]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6977]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6977]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 6978]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6976]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6979]]} + {:process 6 :type :fail :f :txn :value [[:append 4 6978]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6980]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6979]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 6981]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6980]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 6982]]} + {:process 4 :type :fail :f :txn :value [[:append 5 6981]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6983]]} + {:process 6 :type :fail :f :txn :value [[:append 7 6982]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6984]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6983]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 6985]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6984]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 6986]]} + {:process 4 :type :fail :f :txn :value [[:append 2 6985]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6987]]} + {:process 6 :type :fail :f :txn :value [[:append 6 6986]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6988]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6987]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 6989]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6988]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 6990]]} + {:process 4 :type :fail :f :txn :value [[:append 7 6989]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 6991]]} + {:process 6 :type :fail :f :txn :value [[:append 1 6990]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 6992]]} + {:process 4 :type :fail :f :txn :value [[:append 6 6991]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 6993]]} + {:process 6 :type :fail :f :txn :value [[:append 2 6992]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 6994]]} + {:process 4 :type :fail :f :txn :value [[:append 4 6993]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 6995]]} + {:process 6 :type :fail :f :txn :value [[:append 0 6994]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 6996]]} + {:process 4 :type :fail :f :txn :value [[:append 3 6995]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 6997]]} + {:process 6 :type :fail :f :txn :value [[:append 5 6996]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 6998]]} + {:process 4 :type :fail :f :txn :value [[:append 1 6997]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 6999]]} + {:process 6 :type :fail :f :txn :value [[:append 3 6998]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7000]]} + {:process 4 :type :fail :f :txn :value [[:append 0 6999]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7001]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7000]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7002]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7001]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7003]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7002]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7004]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7004]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7005]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7003]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7006]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7006]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7007]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7005]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7008]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7008]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7009]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7007]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7010]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7010]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7011]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7009]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7012]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7012]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7013]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7011]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7014]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7013]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7015]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7014]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7016]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7015]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7017]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7016]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7018]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7017]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7019]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7018]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7020]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7019]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7021]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7020]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7022]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7021]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7023]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7022]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7024]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7023]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7024]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7025]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7026]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7025]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7027]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7026]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7028]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7027]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7028]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7029]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7030]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7029]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7031]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7030]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7032]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7031]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7032]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7033]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7034]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7033]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7035]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7035]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7036]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7034]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7037]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7036]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7038]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7037]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7039]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7038]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7040]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7039]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7041]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7040]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7042]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7041]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7043]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7042]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7044]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7043]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7045]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7044]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7046]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7045]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7047]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7046]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7048]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7047]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7049]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7048]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7050]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7049]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7051]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7050]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7052]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7051]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7053]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7052]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7054]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7053]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7055]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7054]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7056]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7055]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7057]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7056]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7058]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7057]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7059]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7059]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7060]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7058]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7060]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7061]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7062]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7061]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7063]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7062]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7064]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7063]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7065]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7065]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7066]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7066]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7067]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7067]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7068]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7064]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7069]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7068]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7070]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7069]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7071]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7070]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7072]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7071]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7073]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7072]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7074]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7073]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7075]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7074]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7076]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7075]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7077]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7076]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7078]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7077]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7079]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7078]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7080]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7079]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7081]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7080]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7082]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7081]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7083]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7082]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7084]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7083]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7085]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7084]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7086]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7085]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7087]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7086]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7088]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7087]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7089]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7088]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7090]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7089]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7091]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7090]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7092]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7092]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7093]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7091]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7094]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7093]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7095]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7094]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7096]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7095]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7096]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7097]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7098]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7097]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7099]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7098]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7100]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7099]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7100]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7101]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7102]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7101]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7103]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7102]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7104]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7103]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7104]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7105]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7106]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7105]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7107]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7106]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7108]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7107]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7108]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7109]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7110]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7109]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7111]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7110]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7112]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7111]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7112]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7113]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7114]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7113]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7115]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7114]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7115]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7116]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7117]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7116]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7118]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7117]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7119]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7118]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7120]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7120]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7121]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7119]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7122]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7121]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7123]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7122]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7124]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7123]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7125]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7124]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7126]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7125]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7127]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7126]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7128]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7127]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7129]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7128]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7130]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7129]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7131]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7130]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7132]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7131]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7133]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7132]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7134]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7133]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7135]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7134]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7136]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7135]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7137]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7136]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7138]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7137]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7139]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7138]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7140]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7139]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7141]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7140]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7142]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7141]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7143]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7142]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7144]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7143]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7145]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7144]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7146]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7145]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7147]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7146]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7148]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7147]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7149]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7148]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7150]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7149]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7151]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7150]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7152]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7152]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7153]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7151]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7153]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7154]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7155]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7154]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7156]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7155]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7156]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7157]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7158]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7157]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7159]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7158]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7160]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7159]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7161]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7160]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7162]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7161]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7163]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7162]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7164]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7163]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7165]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7164]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7166]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7165]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7167]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7166]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7168]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7167]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7169]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7168]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7170]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7169]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7171]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7170]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7172]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7171]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7172]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7173]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7174]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7173]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7175]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7174]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7176]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7175]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7176]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7177]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7178]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7177]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7179]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7178]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7180]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7179]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7181]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7180]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7182]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7182]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7183]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7181]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7184]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7184]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7185]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7183]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7186]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7186]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7187]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7185]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7188]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7187]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7189]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7188]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7190]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7189]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7191]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7190]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7192]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7191]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7193]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7192]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7194]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7193]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7195]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7194]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7196]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7195]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7197]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7196]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7198]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7197]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7199]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7198]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7200]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7199]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7201]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7200]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7202]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7201]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7203]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7202]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7204]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7203]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7205]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7204]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7206]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7205]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7207]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7206]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7208]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7207]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7209]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7208]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7210]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7209]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7211]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7210]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7212]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7212]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7213]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7211]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7214]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7213]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7215]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7214]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7216]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7215]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7216]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7217]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7218]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7217]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7219]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7218]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7220]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7219]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7220]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7221]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7222]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7221]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7223]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7222]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7224]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7223]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7224]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7225]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7226]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7225]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7227]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7226]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7228]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7227]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7228]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7229]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7229]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7230]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7231]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7230]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7232]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7231]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7233]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7232]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7234]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7233]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7235]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7234]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7236]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7235]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7237]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7236]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7238]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7237]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7239]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7238]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7240]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7240]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7241]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7239]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7242]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7241]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7242]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7243]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7244]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7243]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7245]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7244]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7246]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7245]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7247]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7246]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7248]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7247]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7249]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7248]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7250]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7249]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7250]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7251]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7252]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7251]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7253]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7252]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7254]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7253]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7254]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7255]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7256]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7255]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7257]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7256]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7258]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7257]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7259]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7258]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7260]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7259]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7261]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7260]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7262]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7261]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7262]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7263]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7264]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7263]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7265]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7264]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7266]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7265]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7267]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7266]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7268]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7267]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7269]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7269]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7270]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7268]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7271]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7270]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7272]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7271]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7273]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7272]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7274]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7273]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7275]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7274]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7276]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7275]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7277]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7276]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7278]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7277]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7279]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7278]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7280]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7279]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7281]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7280]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7282]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7281]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7283]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7282]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7284]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7283]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7285]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7284]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7285]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7286]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7287]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7286]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7288]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7287]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7289]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7288]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7290]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7289]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7291]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7290]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7292]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7291]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7293]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7292]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7294]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7294]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7295]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7293]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7296]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7296]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7297]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7295]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7298]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7298]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7299]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7297]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7300]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7299]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7300]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7301]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7302]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7301]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7303]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7302]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7304]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7303]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7304]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7305]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7306]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7305]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7307]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7306]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7308]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7307]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7308]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7309]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7310]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7309]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7311]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7310]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7312]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7311]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7313]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7312]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7314]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7313]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7315]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7314]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7316]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7315]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7316]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7317]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7318]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7317]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7319]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7318]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7320]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7319]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7321]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7320]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7322]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7321]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7323]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7323]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7324]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7322]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7325]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7324]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7326]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7325]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7327]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7326]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7328]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7327]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7329]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7328]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7330]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7329]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7331]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7330]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7332]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7331]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7333]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7332]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7334]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7333]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7335]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7334]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7336]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7335]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7337]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7336]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7338]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7337]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7339]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7338]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7340]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7339]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7341]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7340]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7342]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7341]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7343]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7343]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7344]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7342]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7344]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7345]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7346]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7345]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7347]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7346]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7348]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7347]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7349]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7348]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7350]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7349]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7351]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7350]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7352]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7352]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7353]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7351]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7354]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7353]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7355]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7354]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7356]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7355]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7357]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7356]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7358]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7357]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7359]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7358]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7360]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7359]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7361]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7360]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7362]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7361]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7363]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7362]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7364]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7363]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7365]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7364]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7366]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7365]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7367]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7366]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7368]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7367]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7369]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7368]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7370]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7369]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7371]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7370]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7372]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7371]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7373]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7372]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7374]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7373]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7375]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7374]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7376]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7375]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7377]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7376]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7378]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7377]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7379]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7378]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7380]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7379]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7381]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7380]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7382]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7381]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7383]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7383]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7384]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7382]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7385]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7384]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7386]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7385]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7387]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7386]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7388]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7387]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7389]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7388]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7390]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7389]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7390]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7391]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7392]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7391]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7393]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7392]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7394]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7393]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7395]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7394]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7396]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7395]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7397]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7396]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7398]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7397]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7398]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7399]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7400]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7400]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7401]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7399]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7401]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7402]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7403]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7402]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7403]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7404]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7405]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7404]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7406]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7405]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7407]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7406]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7408]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7407]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7409]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7408]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7410]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7409]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7411]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7410]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7412]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7411]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7413]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7412]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7414]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7413]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7415]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7414]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7416]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7415]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7417]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7416]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7418]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7417]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7419]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7419]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7420]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7418]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7421]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7420]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7422]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7421]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7423]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7422]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7424]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7423]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7425]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7424]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7426]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7425]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7427]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7426]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7428]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7427]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7429]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7428]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7430]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7429]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7431]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7430]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7432]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7431]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7433]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7432]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7434]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7433]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7435]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7434]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7436]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7435]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7437]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7436]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7438]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7437]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7439]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7439]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7440]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7440]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7441]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7438]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7442]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7442]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7443]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7441]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7444]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7444]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7445]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7443]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7445]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7446]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7447]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7446]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7448]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7447]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7449]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7449]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7450]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7450]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7451]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7448]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7452]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7451]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7453]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7452]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7454]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7453]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7455]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7454]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7456]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7455]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7457]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7456]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7457]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7458]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7459]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7458]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7460]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7459]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7461]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7460]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7462]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7461]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7463]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7462]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7464]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7463]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7465]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7464]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7466]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7465]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7467]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7466]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7468]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7467]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7469]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7468]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7470]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7469]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7471]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7470]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7472]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7471]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7473]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7472]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7474]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7473]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7475]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7474]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7476]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7475]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7477]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7476]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7478]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7477]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7479]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7478]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7480]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7479]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7481]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7480]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7482]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7481]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7483]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7482]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7484]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7483]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7485]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7485]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7486]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7484]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7487]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7486]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7488]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7487]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7489]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7488]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7490]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7489]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7491]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7490]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7492]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7491]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7493]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7492]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7494]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7493]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7495]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7494]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7496]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7495]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7497]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7496]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7498]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7497]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7499]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7498]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7500]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7499]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7501]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7500]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7502]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7501]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7503]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7502]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7504]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7503]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7504]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7505]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7506]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7505]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7507]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7506]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7508]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7507]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7508]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7509]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7510]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7509]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7511]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7510]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7512]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7511]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7512]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7513]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7514]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7513]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7515]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7514]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7516]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7515]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7517]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7516]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7518]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7517]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7519]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7518]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7520]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7519]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7521]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7520]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7522]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7521]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7523]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7522]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7524]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7523]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7525]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7524]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7526]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7525]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7527]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7526]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7528]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7527]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7528]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7529]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7530]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7529]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7531]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7530]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7532]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7531]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7532]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7533]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7534]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7533]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7535]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7534]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7536]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7535]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7536]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7537]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7538]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7537]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7539]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7538]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7540]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7539]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7540]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7541]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7542]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7541]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7543]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7543]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7544]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7542]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7545]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7544]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7546]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7545]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7547]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7546]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7548]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7547]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7549]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7548]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7550]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7549]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7551]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7550]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7552]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7551]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7553]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7552]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7554]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7553]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7555]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7554]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7556]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7555]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7557]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7556]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7558]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7557]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7559]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7558]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7560]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7559]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7561]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7560]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7562]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7561]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7563]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7562]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7564]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7563]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7565]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7564]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7566]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7565]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7567]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7566]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7568]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7567]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7569]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7568]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7570]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7569]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7570]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7571]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7572]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7571]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7573]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7572]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7574]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7574]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7575]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7573]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7576]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7575]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7577]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7576]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7578]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7577]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7578]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7579]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7580]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7579]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7581]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7580]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7582]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7581]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7583]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7582]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7584]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7583]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7585]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7584]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7586]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7585]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7587]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7586]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7588]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7587]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7589]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7588]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7590]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7589]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7590]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7591]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7592]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7591]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7593]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7592]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7594]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7593]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7594]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7595]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7596]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7595]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7597]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7596]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7598]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7597]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7598]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7599]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7600]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7599]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7601]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7600]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7602]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7601]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7603]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7603]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7604]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7602]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7605]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7604]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7606]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7605]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7607]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7606]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7608]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7607]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7609]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7608]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7610]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7609]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7611]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7610]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7612]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7611]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7613]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7613]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7614]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7612]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7614]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7615]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7616]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7615]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7617]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7616]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7618]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7617]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7618]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7619]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7620]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7619]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7621]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7620]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7622]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7621]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7623]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7622]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7624]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7623]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7625]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7624]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7626]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7625]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7627]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7626]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7627]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7628]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7629]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7628]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7630]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7629]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7631]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7630]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7632]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7632]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7633]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7631]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7634]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7633]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7635]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7634]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7636]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7635]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7636]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7637]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7638]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7637]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7639]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7638]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7640]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7639]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7641]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7640]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7642]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7641]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7643]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7642]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7644]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7643]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7645]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7644]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7646]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7645]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7647]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7646]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7648]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7647]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7648]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7649]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7650]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7649]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7651]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7650]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7652]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7651]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7652]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7653]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7654]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7653]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7655]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7654]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7656]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7655]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7657]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7656]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7658]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7657]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7659]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7658]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7660]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7659]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7661]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7661]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7662]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7660]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7662]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7663]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7664]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7663]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7665]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7664]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7666]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7665]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7667]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7666]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7668]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7667]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7669]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7668]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7670]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7669]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7671]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7670]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7672]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7671]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7673]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7672]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7674]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7673]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7675]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7674]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7676]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7675]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7677]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7676]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7678]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7677]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7679]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7678]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7680]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7679]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7681]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7680]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7682]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7681]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7683]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7682]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7684]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7683]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7685]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7684]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7686]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7685]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7687]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7686]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7688]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7687]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7689]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7688]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7690]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7690]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7691]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7689]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7692]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7691]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7693]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7692]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7694]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7693]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7694]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7695]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7696]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7695]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7697]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7696]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7698]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7697]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7698]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7699]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7700]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7699]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7701]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7700]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7702]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7701]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7703]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7702]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7704]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7703]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7705]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7704]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7706]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7706]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7707]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7707]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7708]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7708]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7709]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7705]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7710]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7709]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7711]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7710]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7712]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7711]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7713]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7712]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7714]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7713]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7715]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7714]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7716]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7715]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7717]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7716]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7718]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7717]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7719]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7718]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7720]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7719]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7721]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7720]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7722]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7721]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7723]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7723]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7724]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7722]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7725]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7725]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7726]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7724]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7727]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7727]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7728]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7726]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7729]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7729]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7730]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7728]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7731]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7731]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7732]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7730]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7733]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7733]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7734]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7732]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7735]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7734]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7736]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7735]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7737]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7736]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7738]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7737]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7739]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7738]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7740]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7739]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7741]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7740]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7741]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7742]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7743]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7742]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7744]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7743]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7745]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7744]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7746]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7745]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7747]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7746]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7748]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7747]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7749]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7748]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7750]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7749]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7750]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7751]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7752]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7751]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7753]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7753]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7754]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7752]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7755]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7754]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7756]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7755]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7757]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7756]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7758]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7757]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7759]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7758]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7760]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7759]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7761]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7760]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7762]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7761]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7763]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7762]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7764]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7763]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7765]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7764]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7766]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7765]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7767]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7766]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7768]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7767]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7769]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7768]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7770]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7769]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7771]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7770]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7772]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7771]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7773]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7772]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7774]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7773]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7775]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7774]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7776]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7775]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7777]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7776]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7778]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7777]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7779]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7778]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7780]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7779]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7781]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7780]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7782]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7782]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7783]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7781]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7784]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7783]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7785]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7784]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7786]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7785]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7787]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7786]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7788]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7787]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7788]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7789]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7790]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7789]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7791]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7790]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7792]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7791]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7793]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7792]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7794]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7793]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7795]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7794]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7796]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7795]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7796]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7797]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7798]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7797]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7798]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7799]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7800]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7799]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7801]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7800]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7802]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7801]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7803]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7802]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7804]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7803]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7805]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7804]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7806]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7805]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7807]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7806]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7808]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7807]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7809]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7808]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7810]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7809]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7811]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7810]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7812]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7811]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7813]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7812]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7814]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7814]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7815]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7813]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7816]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7816]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7817]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7817]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7818]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7815]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7819]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7818]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7820]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7819]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7821]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7820]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7822]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7821]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7822]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7823]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7824]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7823]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7825]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7824]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7826]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7825]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7826]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7827]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7828]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7827]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7829]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7828]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7830]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7829]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7831]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7830]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7832]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7831]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7833]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7832]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7834]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7833]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7835]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7834]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7836]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7835]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7837]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7836]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7838]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7837]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7838]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7839]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7840]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7839]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7841]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7840]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7842]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7841]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7843]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7842]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7844]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7843]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7845]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7845]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7846]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7844]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7847]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7846]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7848]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7847]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7849]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7848]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7850]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7849]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7851]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7850]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7852]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7851]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7853]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7852]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7854]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7853]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7855]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7854]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7856]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7855]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7857]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7856]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7858]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7857]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7859]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7858]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7860]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7859]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7861]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7860]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7862]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7861]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7863]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7862]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7864]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7863]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7865]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7864]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7866]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7865]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7867]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7866]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7868]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7867]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7869]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7868]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7870]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7869]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7871]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7870]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7872]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7872]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7873]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7871]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7874]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7873]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7875]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7874]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7876]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7875]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7877]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7876]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7878]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7877]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7879]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7879]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7878]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7880]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7881]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7880]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7882]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7881]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7883]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7882]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7884]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7883]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7885]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7884]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7886]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7885]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7887]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7886]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7888]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7887]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7889]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7888]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7890]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7889]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7891]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7890]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7892]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7891]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7893]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7892]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7894]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7893]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7895]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7894]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7896]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7895]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7897]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7896]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7898]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7897]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7899]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7898]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7900]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7899]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7901]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7900]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7902]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7902]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7903]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7901]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7904]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7903]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7905]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7904]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7906]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7905]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7907]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7906]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7908]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7907]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7909]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7908]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7910]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7909]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7910]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7911]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7912]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7912]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7913]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7913]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7914]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7911]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7915]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7914]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7916]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7915]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7917]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7916]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7918]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7917]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7919]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7918]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7920]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7919]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7921]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7920]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7922]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7921]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7923]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7922]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7924]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7923]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7924]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7925]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7926]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7925]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7927]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7926]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7928]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7927]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7928]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7929]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7930]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7929]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7931]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7931]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7932]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7930]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7933]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7933]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7934]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7932]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7935]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7934]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7936]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7935]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7936]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7937]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7938]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7937]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7939]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7938]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7940]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7939]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7940]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7941]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7942]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7941]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7943]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7942]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7944]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7943]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7944]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7945]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7946]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7945]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7947]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7946]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7948]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7947]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7948]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7949]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7950]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7949]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7951]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7950]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7952]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7951]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7953]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7952]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7954]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7953]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7955]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7954]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7956]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7955]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7957]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7956]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7958]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7957]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7959]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7958]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7960]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7960]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7961]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7959]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7961]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7962]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7963]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7962]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7964]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7964]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7965]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7963]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7966]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7965]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7967]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7966]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7968]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7967]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7968]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7969]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7970]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7969]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7971]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7970]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7972]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7971]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7973]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7972]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7974]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7973]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7975]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7974]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7976]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7975]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7977]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7976]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7978]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7977]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 7979]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7978]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 7980]]} + {:process 4 :type :fail :f :txn :value [[:append 2 7979]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7981]]} + {:process 6 :type :fail :f :txn :value [[:append 1 7980]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7982]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7981]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 7983]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7982]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 7984]]} + {:process 4 :type :fail :f :txn :value [[:append 7 7983]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7985]]} + {:process 6 :type :fail :f :txn :value [[:append 0 7984]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7986]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7985]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 7987]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7986]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 7988]]} + {:process 4 :type :fail :f :txn :value [[:append 4 7987]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 7989]]} + {:process 6 :type :fail :f :txn :value [[:append 3 7988]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7990]]} + {:process 4 :type :fail :f :txn :value [[:append 3 7989]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 7991]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7990]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 7992]]} + {:process 4 :type :fail :f :txn :value [[:append 1 7991]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 7993]]} + {:process 6 :type :fail :f :txn :value [[:append 2 7992]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 7994]]} + {:process 6 :type :fail :f :txn :value [[:append 7 7994]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 7995]]} + {:process 4 :type :fail :f :txn :value [[:append 0 7993]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 7995]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 7996]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 7997]]} + {:process 6 :type :fail :f :txn :value [[:append 6 7996]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 7997]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 7998]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 7999]]} + {:process 4 :type :fail :f :txn :value [[:append 5 7998]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8000]]} + {:process 6 :type :fail :f :txn :value [[:append 4 7999]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8001]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8000]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8002]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8001]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8002]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8003]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8004]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8003]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8005]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8004]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8006]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8005]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8006]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8007]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8008]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8007]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8009]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8008]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8010]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8009]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8010]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8011]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8012]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8011]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8013]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8012]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8014]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8013]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8015]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8014]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8016]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8015]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8017]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8016]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8018]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8017]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8019]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8018]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8020]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8019]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8021]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8020]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8022]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8021]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8023]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8022]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8024]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8024]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8025]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8023]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8026]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8025]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8027]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8026]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8028]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8027]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8029]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8028]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8030]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8029]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8031]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8030]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8032]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8031]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8033]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8032]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8034]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8033]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8034]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8035]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8036]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8035]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8037]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8036]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8038]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8037]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8039]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8038]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8040]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8039]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8041]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8040]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8042]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8041]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8043]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8042]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8044]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8043]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8045]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8044]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8046]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8045]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8047]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8046]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8048]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8047]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8049]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8048]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8050]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8049]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8051]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8050]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8052]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8051]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8053]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8052]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8054]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8054]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8055]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8053]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8056]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8055]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8057]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8056]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8058]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8057]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8058]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8059]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8060]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8059]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8061]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8060]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8062]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8061]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8062]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8063]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8064]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8063]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8065]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8064]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8066]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8065]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8067]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8066]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8068]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8067]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8069]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8068]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8070]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8069]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8070]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8071]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8072]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8071]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8073]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8072]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8074]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8073]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8075]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8074]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8076]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8075]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8077]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8076]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8078]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8077]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8079]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8078]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8080]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8079]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8081]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8080]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8082]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8081]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8082]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8083]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8084]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8083]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8085]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8085]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8086]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8084]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8087]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8086]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8088]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8087]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8089]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8088]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8090]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8089]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8091]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8090]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8092]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8091]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8093]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8092]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8094]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8093]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8095]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8094]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8096]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8095]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8097]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8096]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8098]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8097]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8099]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8098]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8100]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8099]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8101]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8100]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8102]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8101]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8103]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8102]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8104]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8103]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8105]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8104]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8106]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8105]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8107]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8106]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8108]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8107]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8109]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8108]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8110]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8109]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8111]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8110]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8112]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8112]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8113]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8111]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8114]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8113]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8115]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8114]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8116]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8115]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8117]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8116]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8118]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8117]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8119]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8118]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8120]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8119]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8120]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8121]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8122]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8121]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8123]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8122]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8124]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8123]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8124]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8125]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8126]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8125]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8127]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8126]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8128]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8127]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8128]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8129]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8130]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8129]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8131]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8130]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8132]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8131]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8132]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8133]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8134]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8133]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8135]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8134]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8136]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8135]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8136]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8137]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8138]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8137]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8139]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8139]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8138]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8140]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8141]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8140]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8142]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8141]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8143]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8142]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8144]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8143]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8144]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8145]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8146]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8145]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8147]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8146]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8148]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8147]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8148]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8149]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8150]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8149]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8151]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8150]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8152]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8151]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8152]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8153]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8154]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8153]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8155]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8154]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8156]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8155]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8156]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8157]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8158]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8157]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8159]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8158]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8160]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8159]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8160]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8161]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8162]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8161]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8163]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8162]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8164]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8163]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8164]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8165]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8166]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8165]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8167]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8166]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8168]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8167]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8168]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8169]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8170]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8169]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8171]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8171]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8172]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8170]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8173]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8172]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8174]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8173]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8175]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8174]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8176]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8175]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8177]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8176]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8178]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8177]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8179]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8178]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8180]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8179]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8181]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8180]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8182]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8181]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8183]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8182]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8184]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8183]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8185]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8184]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8186]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8185]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8187]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8186]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8188]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8187]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8189]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8188]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8190]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8189]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8191]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8190]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8192]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8191]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8193]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8192]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8194]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8193]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8195]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8194]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8196]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8195]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8197]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8196]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8198]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8198]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8199]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8197]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8199]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8200]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8201]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8201]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8202]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8200]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8202]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8203]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8204]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8203]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8205]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8204]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8206]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8205]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8206]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8207]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8208]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8207]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8209]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8208]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8210]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8209]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8210]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8211]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8212]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8211]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8213]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8212]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8214]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8213]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8214]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8215]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8216]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8215]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8217]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8216]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8218]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8217]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8218]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8219]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8220]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8219]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8221]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8220]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8222]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8221]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8222]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8223]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8224]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8223]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8225]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8225]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8226]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8224]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8227]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8226]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8228]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8227]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8229]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8228]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8230]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8229]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8231]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8230]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8232]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8231]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8233]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8232]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8234]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8233]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8235]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8234]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8236]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8235]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8237]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8236]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8238]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8237]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8239]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8238]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8240]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8239]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8241]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8240]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8242]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8241]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8243]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8242]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8244]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8243]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8245]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8244]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8246]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8245]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8247]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8246]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8248]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8247]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8249]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8248]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8250]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8249]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8251]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8250]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8252]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8251]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8253]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8252]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8253]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8254]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8255]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8254]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8256]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8256]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8257]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8255]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8258]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8258]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8259]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8257]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8260]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8259]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8261]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8260]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8262]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8261]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8263]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8262]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8264]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8263]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8265]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8264]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8266]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8265]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8266]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8267]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8268]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8267]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8269]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8268]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8270]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8269]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8270]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8271]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8272]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8271]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8273]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8272]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8274]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8273]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8275]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8274]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8276]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8275]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8277]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8276]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8278]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8277]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8278]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8279]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8280]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8279]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8281]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8280]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8282]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8281]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8282]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8283]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8284]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8283]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8285]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8284]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8286]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8285]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8286]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8287]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8288]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8287]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8289]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8289]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8290]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8288]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8291]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8290]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8292]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8291]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8293]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8292]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8294]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8293]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8295]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8294]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8296]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8295]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8297]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8296]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8298]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8297]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8299]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8298]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8300]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8299]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8301]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8300]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8302]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8301]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8303]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8302]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8304]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8303]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8305]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8304]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8306]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8305]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8307]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8306]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8308]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8307]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8309]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8308]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8309]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8310]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8311]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8310]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8312]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8311]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8313]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8312]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8314]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8313]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8315]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8315]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8316]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8314]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8317]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8317]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8318]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8316]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8319]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8318]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8320]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8319]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8321]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8320]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8322]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8321]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8323]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8322]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8324]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8323]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8325]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8324]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8326]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8325]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8327]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8326]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8328]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8327]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8329]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8328]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8330]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8329]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8331]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8330]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8332]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8331]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8333]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8332]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8334]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8333]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8335]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8334]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8336]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8335]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8337]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8336]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8338]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8337]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8339]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8338]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8340]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8339]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8341]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8340]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8342]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8341]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8343]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8342]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8344]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8343]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8345]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8344]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8346]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8345]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8347]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8347]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8348]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8346]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8349]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8348]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8350]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8349]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8351]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8351]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8352]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8350]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8353]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8352]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8354]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8353]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8355]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8354]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8356]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8355]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8357]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8356]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8358]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8357]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8359]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8358]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8360]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8359]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8361]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8360]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8362]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8361]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8363]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8362]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8364]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8363]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8365]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8364]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8366]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8365]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8367]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8367]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8366]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8368]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8369]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8368]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8370]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8369]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8370]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8371]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8372]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8371]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8373]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8372]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8374]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8373]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8374]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8375]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8376]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8375]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8377]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8377]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8378]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8376]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8379]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8378]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8380]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8379]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8381]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8380]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8382]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8381]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8383]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8382]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8384]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8383]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8385]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8384]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8386]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8385]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8387]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8386]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8388]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8387]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8389]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8388]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8390]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8389]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8391]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8390]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8392]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8391]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8393]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8392]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8394]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8393]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8395]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8394]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8396]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8395]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8397]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8396]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8398]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8397]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8399]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8398]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8400]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8399]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8401]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8400]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8402]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8401]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8403]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8403]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8404]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8402]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8405]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8405]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8406]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8404]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8407]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8407]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8408]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8406]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8409]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8408]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8410]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8409]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8410]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8411]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8412]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8411]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8413]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8412]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8414]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8413]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8414]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8415]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8416]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8415]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8417]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8416]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8418]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8417]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8418]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8419]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8420]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8419]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8421]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8420]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8422]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8421]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8423]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8422]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8423]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8424]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8425]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8424]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8426]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8425]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8427]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8426]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8428]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8427]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8429]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8428]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8430]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8429]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8430]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8431]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8432]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8431]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8433]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8432]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8434]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8433]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8435]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8434]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8436]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8435]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8437]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8437]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8438]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8436]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8439]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8438]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8440]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8439]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8441]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8440]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8442]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8441]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8443]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8442]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8444]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8443]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8445]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8444]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8446]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8445]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8447]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8446]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8448]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8447]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8449]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8448]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8450]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8449]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8451]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8450]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8452]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8451]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8453]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8452]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8454]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8453]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8455]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8454]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8456]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8455]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8457]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8456]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8458]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8457]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8459]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8458]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8460]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8459]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8461]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8461]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8462]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8460]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8463]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8462]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8464]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8463]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8465]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8464]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8466]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8465]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8466]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8467]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8468]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8467]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8469]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8468]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8470]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8469]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8470]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8471]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8472]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8471]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8473]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8472]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8474]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8473]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8474]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8475]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8476]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8475]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8477]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8476]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8478]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8477]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8478]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8479]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8480]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8479]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8481]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8481]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8480]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8482]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8483]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8482]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8484]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8483]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8485]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8484]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8486]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8485]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8486]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8487]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8488]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8487]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8489]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8488]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8490]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8489]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8490]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8491]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8492]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8491]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8493]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8493]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8494]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8492]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8495]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8494]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8496]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8495]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8497]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8496]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8498]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8497]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8499]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8498]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8500]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8499]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8501]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8500]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8502]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8501]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8503]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8502]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8504]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8503]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8505]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8504]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8506]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8505]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8507]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8506]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8508]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8507]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8509]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8508]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8510]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8509]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8511]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8510]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8512]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8511]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8513]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8512]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8514]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8513]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8515]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8514]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8516]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8515]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8517]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8516]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8518]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8517]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8519]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8518]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8520]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8520]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8521]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8519]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8522]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8521]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8523]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8522]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8524]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8523]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8524]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8525]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8526]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8525]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8527]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8526]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8528]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8527]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8528]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8529]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8530]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8529]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8531]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8530]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8532]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8531]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8532]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8533]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8534]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8533]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8535]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8534]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8536]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8535]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8537]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8536]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8538]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8538]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8539]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8537]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8540]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8539]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8541]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8540]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8542]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8541]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8543]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8542]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8544]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8543]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8545]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8544]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8546]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8545]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8547]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8546]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8548]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8547]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8549]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8548]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8550]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8549]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8551]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8551]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8552]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8550]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8553]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8553]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8554]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8552]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8555]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8554]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8556]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8555]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8557]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8556]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8558]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8557]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8559]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8558]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8560]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8559]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8561]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8560]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8562]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8561]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8563]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8562]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8564]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8563]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8565]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8564]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8566]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8565]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8567]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8566]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8568]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8567]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8569]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8568]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8570]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8569]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8571]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8570]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8572]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8571]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8573]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8572]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8574]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8573]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8575]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8574]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8576]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8576]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8577]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8577]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8578]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8578]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8579]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8575]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8580]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8579]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8581]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8580]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8582]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8581]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8582]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8583]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8584]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8583]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8585]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8584]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8586]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8585]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8586]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8587]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8588]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8587]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8589]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8588]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8590]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8589]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8590]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8591]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8592]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8591]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8593]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8592]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8594]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8593]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8594]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8595]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8595]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8596]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8597]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8596]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8598]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8597]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8599]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8598]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8600]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8599]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8601]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8600]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8602]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8601]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8603]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8602]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8604]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8603]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8605]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8604]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8606]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8606]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8607]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8605]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8608]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8607]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8609]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8608]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8610]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8609]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8610]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8611]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8612]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8611]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8613]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8612]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8614]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8613]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8615]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8614]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8616]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8615]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8617]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8616]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8618]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8617]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8618]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8619]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8620]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8619]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8621]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8620]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8622]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8621]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8622]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8623]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8624]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8623]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8625]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8624]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8626]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8625]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8627]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8627]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8628]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8626]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8629]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8628]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8630]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8629]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8631]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8630]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8632]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8631]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8633]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8632]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8634]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8633]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8635]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8635]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8636]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8634]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8637]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8637]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8638]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8636]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8639]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8639]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8640]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8638]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8641]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8641]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8642]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8640]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8643]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8642]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8644]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8643]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8645]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8644]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8646]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8645]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8647]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8646]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8648]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8647]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8649]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8648]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8650]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8649]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8651]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8650]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8652]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8651]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8652]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8653]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8654]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8653]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8655]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8654]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8656]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8655]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8657]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8656]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8658]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8657]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8659]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8658]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8660]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8659]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8661]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8661]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8662]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8660]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8663]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8662]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8664]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8664]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8665]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8663]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8666]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8666]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8667]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8665]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8668]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8668]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8669]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8667]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8670]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8670]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8671]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8669]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8672]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8671]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8673]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8672]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8674]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8673]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8675]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8674]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8676]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8675]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8677]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8676]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8678]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8677]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8679]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8678]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8680]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8679]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8681]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8680]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8682]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8681]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8683]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8682]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8684]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8683]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8685]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8684]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8686]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8685]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8687]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8686]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8688]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8687]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8689]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8688]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8690]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8689]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8691]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8690]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8692]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8691]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8693]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8692]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8694]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8694]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8695]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8693]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8695]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8696]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8697]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8696]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8698]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8697]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8699]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8698]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8700]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8699]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8701]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8700]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8702]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8701]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8703]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8702]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8704]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8703]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8705]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8704]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8706]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8705]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8707]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8706]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8708]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8707]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8708]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8709]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8710]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8709]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8711]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8710]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8712]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8711]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8713]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8712]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8714]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8713]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8715]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8714]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8716]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8715]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8717]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8716]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8718]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8717]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8719]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8718]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8720]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8719]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8721]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8721]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8722]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8720]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8723]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8722]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8724]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8723]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8725]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8724]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8726]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8725]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8727]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8727]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8728]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8726]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8729]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8728]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8730]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8729]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8731]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8730]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8732]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8731]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8733]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8732]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8734]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8733]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8735]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8734]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8736]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8735]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8737]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8736]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8738]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8737]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8739]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8738]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8740]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8739]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8741]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8740]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8742]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8741]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8743]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8742]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8744]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8743]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8745]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8744]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8746]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8745]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8747]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8746]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8748]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8747]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8749]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8748]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8750]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8749]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8751]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8750]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8752]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8751]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8753]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8752]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8754]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8753]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8755]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8754]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8756]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8756]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8757]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8755]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8758]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8757]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8759]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8758]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8760]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8759]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8761]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8761]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8762]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8760]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8763]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8762]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8764]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8763]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8765]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8764]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8766]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8765]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8766]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8767]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8768]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8767]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8769]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8768]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8770]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8769]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8770]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8771]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8772]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8771]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8773]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8772]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8774]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8773]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8774]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8775]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8776]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8775]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8777]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8776]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8778]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8777]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8779]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8778]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8780]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8779]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8781]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8781]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8782]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8780]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8783]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8782]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8784]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8783]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8785]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8784]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8786]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8785]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8787]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8786]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8788]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8787]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8789]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8788]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8790]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8789]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8791]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8790]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8792]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8791]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8793]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8792]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8794]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8793]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8795]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8794]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8796]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8796]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8797]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8795]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8798]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8797]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8799]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8798]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8800]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8799]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8801]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8800]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8802]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8801]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8803]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8802]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8804]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8803]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8805]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8804]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8806]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8805]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8807]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8806]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8808]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8807]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8808]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8809]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8810]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8809]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8811]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8811]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8812]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8810]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8813]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8812]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8814]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8813]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8815]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8814]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8816]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8815]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8817]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8816]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8818]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8817]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8819]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8818]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8820]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8819]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8821]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8820]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8822]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8821]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8822]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8823]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8824]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8823]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8825]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8824]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8826]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8825]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8826]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8827]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8828]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8827]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8829]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8828]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8830]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8829]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8831]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8831]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8832]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8830]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8833]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8832]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8834]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8833]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8835]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8834]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8836]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8835]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8837]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8836]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8838]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8837]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8839]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8838]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8840]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8840]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8841]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8839]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8842]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8841]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8843]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8842]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8844]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8843]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8845]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8844]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8846]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8845]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8847]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8846]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8848]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8847]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8848]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8849]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8850]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8849]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8851]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8850]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8852]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8851]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8852]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8853]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8854]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8853]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8855]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8854]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8856]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8855]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8856]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8857]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8858]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8857]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8859]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8858]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8860]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8859]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8860]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8861]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8862]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8861]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8863]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8862]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8864]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8863]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8865]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8865]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8866]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8866]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8867]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8864]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8868]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8867]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8869]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8868]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8870]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8869]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8871]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8870]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8872]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8871]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8873]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8872]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8874]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8873]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8874]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8875]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8876]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8875]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8877]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8876]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8878]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8877]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8878]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8879]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8880]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8879]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8881]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8880]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8882]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8881]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8882]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8883]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8884]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8883]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8885]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8884]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8886]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8885]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8886]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8887]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8888]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8887]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8889]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8888]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8890]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8889]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8890]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8891]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8892]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8891]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8893]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8892]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8894]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8893]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8895]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8894]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8896]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8895]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8897]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8897]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8898]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8896]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8899]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8898]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8900]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8900]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8901]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8899]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8902]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8901]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8903]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8902]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8904]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8903]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8905]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8904]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8906]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8905]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8907]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8906]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8908]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8907]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8909]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8908]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8910]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8909]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8911]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8910]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8912]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8911]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8913]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8912]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8914]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8913]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8915]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8914]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8916]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8915]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8916]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8917]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8918]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8917]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8919]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8918]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8920]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8919]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8921]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8920]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8922]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8921]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8923]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8922]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8924]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8924]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8925]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8923]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8926]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8926]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8927]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8925]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8928]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8928]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8929]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8927]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8930]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8930]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8931]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8929]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8932]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8931]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8933]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8933]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8934]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8932]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8935]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8934]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8936]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8935]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8936]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8937]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8938]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8937]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8939]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8938]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8940]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8939]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8941]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8940]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8942]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8941]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8943]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8942]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8944]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8943]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8945]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8944]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8946]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8945]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8947]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8946]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8948]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8947]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8949]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8948]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8950]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8949]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8951]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8950]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8952]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8951]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8953]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8952]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8954]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8954]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8955]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8953]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8956]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8955]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8957]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8956]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8958]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8957]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8958]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8959]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8960]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8959]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8961]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8960]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8962]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8961]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8962]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8963]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8964]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8963]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8965]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8964]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8966]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8965]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8967]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8967]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8968]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8966]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8969]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8968]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8970]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8969]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8971]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8970]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8972]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8971]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8973]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8972]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8974]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8973]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8975]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8974]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8976]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8975]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 8977]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8976]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8978]]} + {:process 4 :type :fail :f :txn :value [[:append 4 8977]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8979]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8978]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8980]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8979]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 8981]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8980]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 8982]]} + {:process 4 :type :fail :f :txn :value [[:append 1 8981]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8983]]} + {:process 6 :type :fail :f :txn :value [[:append 3 8982]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8984]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8984]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 8985]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8983]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 8986]]} + {:process 6 :type :fail :f :txn :value [[:append 2 8985]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8987]]} + {:process 4 :type :fail :f :txn :value [[:append 6 8986]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 8988]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8987]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 8988]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 8989]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 8990]]} + {:process 6 :type :fail :f :txn :value [[:append 5 8989]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8991]]} + {:process 4 :type :fail :f :txn :value [[:append 3 8990]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 8992]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8991]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 8993]]} + {:process 6 :type :fail :f :txn :value [[:append 4 8993]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 8994]]} + {:process 6 :type :fail :f :txn :value [[:append 1 8994]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 8995]]} + {:process 4 :type :fail :f :txn :value [[:append 2 8992]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 8995]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 8996]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 8997]]} + {:process 4 :type :fail :f :txn :value [[:append 0 8996]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 8998]]} + {:process 6 :type :fail :f :txn :value [[:append 0 8997]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 8998]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 8999]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9000]]} + {:process 6 :type :fail :f :txn :value [[:append 6 8999]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9001]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9000]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9002]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9001]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9003]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9003]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9004]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9004]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9005]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9005]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9006]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9002]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9007]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9007]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9008]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9006]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9009]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9008]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9010]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9009]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9011]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9010]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9012]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9011]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9012]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9013]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9014]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9013]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9015]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9014]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9016]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9015]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9017]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9016]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9018]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9017]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9019]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9018]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9020]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9019]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9020]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9021]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9022]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9021]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9023]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9022]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9024]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9023]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9025]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9024]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9026]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9025]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9027]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9026]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9028]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9027]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9028]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9029]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9030]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9029]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9031]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9030]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9032]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9031]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9033]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9032]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9034]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9033]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9035]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9034]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9036]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9035]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9037]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9037]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9038]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9038]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9039]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9036]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9040]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9039]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9041]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9040]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9042]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9041]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9043]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9042]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9044]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9043]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9045]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9044]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9046]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9045]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9047]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9046]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9048]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9047]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9049]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9048]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9050]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9049]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9051]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9050]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9052]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9051]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9053]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9052]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9054]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9053]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9054]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9055]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9056]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9055]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9057]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9056]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9058]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9058]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9059]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9057]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9060]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9059]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9061]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9060]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9062]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9061]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9063]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9062]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9064]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9063]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9065]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9065]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9066]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9066]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9067]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9064]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9068]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9068]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9069]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9069]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9070]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9067]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9071]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9071]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9072]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9072]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9073]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9070]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9073]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9074]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9075]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9074]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9076]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9075]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9077]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9076]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9078]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9077]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9079]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9078]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9080]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9079]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9081]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9080]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9082]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9081]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9083]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9082]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9084]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9083]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9085]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9084]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9086]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9085]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9087]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9086]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9088]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9087]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9089]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9088]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9090]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9089]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9091]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9090]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9092]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9091]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9093]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9092]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9094]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9093]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9095]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9094]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9096]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9095]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9097]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9096]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9098]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9097]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9099]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9098]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9100]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9100]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9101]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9099]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9102]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9101]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9103]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9102]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9104]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9103]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9105]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9104]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9106]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9105]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9107]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9106]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9108]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9107]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9108]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9109]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9110]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9109]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9111]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9110]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9112]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9111]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9113]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9112]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9114]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9113]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9115]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9114]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9116]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9115]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9116]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9117]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9118]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9117]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9119]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9118]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9120]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9119]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9120]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9121]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9122]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9121]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9123]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9122]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9124]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9123]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9124]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9125]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9126]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9125]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9127]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9127]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9128]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9126]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9129]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9128]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9130]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9129]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9131]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9130]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9132]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9131]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9133]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9132]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9134]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9134]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9133]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9135]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9136]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9135]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9137]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9137]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9138]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9136]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9139]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9139]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9140]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9140]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9141]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9138]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9142]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9142]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9143]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9141]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9144]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9143]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9145]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9144]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9146]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9145]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9146]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9147]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9148]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9147]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9149]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9148]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9150]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9149]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9150]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9151]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9152]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9151]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9153]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9152]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9154]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9154]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9155]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9153]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9155]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9156]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9157]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9156]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9158]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9158]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9159]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9157]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9160]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9159]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9161]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9160]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9162]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9161]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9163]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9162]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9164]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9163]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9165]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9164]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9166]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9165]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9167]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9166]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9168]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9167]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9169]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9168]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9170]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9169]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9171]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9170]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9172]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9171]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9173]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9172]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9174]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9173]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9175]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9174]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9176]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9175]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9177]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9176]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9178]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9177]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9179]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9178]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9180]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9179]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9181]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9180]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9182]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9181]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9183]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9182]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9184]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9183]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9185]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9184]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9186]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9185]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9187]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9186]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9188]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9187]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9189]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9188]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9190]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9190]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9191]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9191]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9192]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9189]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9193]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9192]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9194]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9193]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9195]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9194]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9196]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9195]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9197]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9196]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9198]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9198]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9199]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9199]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9200]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9200]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9201]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9197]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9202]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9201]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9203]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9202]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9204]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9203]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9204]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9205]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9206]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9205]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9207]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9206]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9208]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9207]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9208]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9209]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9210]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9209]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9211]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9210]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9212]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9211]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9212]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9213]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9214]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9213]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9215]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9214]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9216]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9215]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9217]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9217]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9218]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9216]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9219]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9218]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9220]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9219]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9220]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9221]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9222]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9221]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9223]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9222]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9224]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9223]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9225]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9224]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9226]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9225]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9227]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9226]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9228]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9227]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9229]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9228]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9230]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9229]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9231]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9230]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9232]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9231]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9233]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9232]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9234]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9234]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9235]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9235]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9236]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9236]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9237]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9233]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9238]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9237]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9239]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9238]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9240]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9239]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9240]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9241]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9242]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9241]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9243]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9243]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9244]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9242]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9245]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9244]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9246]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9245]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9247]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9246]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9248]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9247]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9249]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9248]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9250]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9249]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9251]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9250]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9252]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9251]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9253]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9252]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9254]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9253]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9255]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9254]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9256]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9255]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9257]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9256]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9258]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9257]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9259]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9258]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9260]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9259]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9261]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9260]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9262]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9261]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9263]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9262]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9264]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9263]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9265]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9264]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9266]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9265]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9267]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9266]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9268]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9267]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9269]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9268]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9270]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9270]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9271]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9271]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9272]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9272]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9273]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9269]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9274]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9274]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9275]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9273]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9276]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9276]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9277]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9275]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9277]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9278]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9279]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9278]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9279]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9280]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9281]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9280]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9282]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9281]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9283]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9282]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9284]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9283]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9284]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9285]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9286]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9285]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9287]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9286]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9288]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9287]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9289]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9288]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9290]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9289]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9291]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9290]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9292]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9291]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9293]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9292]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9294]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9293]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9295]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9294]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9296]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9295]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9296]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9297]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9298]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9297]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9299]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9299]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9300]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9298]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9301]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9300]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9302]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9301]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9303]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9302]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9304]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9303]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9305]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9304]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9306]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9306]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9307]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9307]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9308]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9308]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9309]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9305]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9309]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9310]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9311]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9310]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9312]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9311]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9313]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9312]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9314]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9313]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9315]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9314]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9316]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9315]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9317]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9316]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9318]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9317]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9319]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9318]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9320]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9319]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9320]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9321]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9322]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9321]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9323]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9322]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9324]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9323]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9325]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9324]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9326]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9325]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9327]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9327]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9328]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9326]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9329]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9328]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9330]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9329]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9331]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9330]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9332]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9331]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9333]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9332]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9334]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9333]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9335]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9334]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9335]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9336]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9337]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9336]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9338]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9337]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9339]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9338]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9340]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9339]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9341]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9341]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9342]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9342]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9343]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9343]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9344]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9340]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9345]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9344]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9346]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9345]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9347]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9346]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9348]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9347]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9349]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9348]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9350]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9349]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9351]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9350]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9352]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9351]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9353]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9352]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9354]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9353]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9355]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9354]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9356]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9356]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9357]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9355]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9358]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9357]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9359]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9358]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9360]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9359]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9360]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9361]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9362]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9361]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9363]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9362]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9364]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9363]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9364]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9365]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9366]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9365]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9367]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9366]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9368]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9367]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9368]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9369]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9370]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9369]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9371]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9370]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9372]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9371]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9373]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9372]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9374]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9373]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9375]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9374]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9376]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9375]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9377]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9377]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9378]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9378]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9379]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9379]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9380]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9380]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9381]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9376]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9381]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9382]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9383]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9383]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9384]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9382]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9385]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9384]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9386]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9385]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9387]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9386]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9388]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9387]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9389]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9388]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9390]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9389]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9391]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9391]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9392]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9390]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9393]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9392]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9394]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9393]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9395]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9394]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9396]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9395]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9396]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9397]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9398]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9397]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9399]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9398]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9400]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9399]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9401]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9400]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9402]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9401]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9403]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9402]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9404]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9403]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9404]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9405]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9406]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9405]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9407]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9406]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9408]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9407]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9409]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9408]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9410]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9409]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9411]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9411]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9412]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9410]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9413]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9412]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9414]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9414]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9415]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9415]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9416]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9416]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9417]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9417]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9418]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9418]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9419]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9419]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9420]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9420]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9421]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9413]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9421]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9422]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9423]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9422]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9424]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9423]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9425]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9424]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9426]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9425]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9427]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9426]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9428]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9427]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9429]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9428]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9430]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9430]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9431]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9429]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9432]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9431]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9433]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9433]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9434]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9434]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9435]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9432]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9436]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9436]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9437]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9435]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9437]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9438]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9439]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9438]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9439]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9440]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9441]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9440]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9442]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9441]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9443]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9442]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9444]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9443]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9445]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9444]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9446]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9445]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9447]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9446]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9448]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9447]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9449]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9448]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9450]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9449]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9451]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9450]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9452]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9451]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9453]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9452]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9454]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9453]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9455]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9454]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9456]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9456]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9457]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9457]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9458]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9458]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9459]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9459]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9460]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9455]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9461]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9460]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9462]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9462]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9463]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9463]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9464]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9461]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9465]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9464]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9466]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9465]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9467]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9466]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9468]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9467]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9469]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9468]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9470]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9469]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9471]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9470]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9472]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9471]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9473]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9472]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9474]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9473]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9475]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9474]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9476]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9475]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9477]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9476]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9478]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9477]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9479]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9478]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9480]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9479]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9481]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9480]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9482]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9481]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9483]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9482]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9484]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9483]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9485]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9484]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9486]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9485]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9486]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9487]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9488]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9488]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9489]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9487]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9490]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9489]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9491]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9490]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9491]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9492]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9493]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9492]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9494]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9493]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9495]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9494]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9496]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9496]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9497]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9497]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9498]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9498]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9499]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9499]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9500]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9500]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9501]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9495]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9502]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9501]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9503]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9502]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9504]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9503]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9505]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9505]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9506]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9504]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9506]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9507]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9508]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9507]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9509]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9509]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9510]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9508]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9511]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9510]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9512]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9511]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9513]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9512]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9514]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9513]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9515]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9514]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9516]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9515]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9517]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9516]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9518]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9517]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9519]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9518]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9520]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9519]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9521]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9520]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9522]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9521]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9523]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9522]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9524]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9523]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9524]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9525]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9526]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9525]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9527]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9526]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9528]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9527]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9528]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9529]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9530]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9529]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9531]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9530]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9532]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9531]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9533]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9533]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9534]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9534]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9535]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9535]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9536]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9532]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9536]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9537]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9538]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9537]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9539]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9539]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9540]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9538]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9541]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9540]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9542]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9541]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9543]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9542]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9544]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9543]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9545]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9544]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9546]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9545]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9546]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9547]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9548]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9547]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9549]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9548]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9550]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9549]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9550]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9551]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9552]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9551]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9553]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9552]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9554]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9553]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9555]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9554]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9556]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9555]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9557]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9556]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9558]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9557]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9558]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9559]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9560]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9559]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9561]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9560]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9562]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9561]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9562]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9563]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9564]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9563]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9565]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9564]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9566]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9566]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9567]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9567]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9568]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9568]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9569]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9565]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9570]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9569]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9571]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9571]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9572]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9570]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9573]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9572]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9574]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9573]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9575]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9574]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9576]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9575]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9577]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9576]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9578]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9577]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9579]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9578]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9580]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9579]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9581]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9580]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9582]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9581]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9583]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9582]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9584]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9583]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9585]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9584]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9586]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9585]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9587]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9586]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9588]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9587]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9589]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9588]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9590]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9589]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9591]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9590]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9592]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9591]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9593]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9592]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9594]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9593]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9595]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9594]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9596]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9595]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9597]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9596]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9598]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9598]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9599]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9597]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9600]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9599]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9601]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9600]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9602]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9601]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9603]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9603]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9604]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9604]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9605]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9605]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9606]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9602]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9606]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9607]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9608]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9607]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9609]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9608]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9610]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9609]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9610]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9611]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9612]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9611]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9613]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9612]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9614]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9613]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9615]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9614]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9616]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9615]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9617]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9616]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9618]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9617]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9619]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9619]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9620]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9618]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9621]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9620]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9622]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9621]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9623]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9623]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9624]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9622]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9625]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9624]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9626]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9625]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9627]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9626]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9628]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9627]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9629]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9628]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9630]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9629]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9631]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9630]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9632]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9631]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9633]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9632]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9634]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9633]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9635]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9634]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9636]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9635]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9637]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9636]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9638]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9638]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9639]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9639]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9640]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9640]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9641]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9641]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9642]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9637]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9642]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9643]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9644]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9643]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9645]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9644]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9646]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9645]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9647]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9646]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9648]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9647]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9649]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9648]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9650]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9649]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9651]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9650]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9651]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9652]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9653]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9652]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9654]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9654]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9655]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9653]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9656]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9655]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9657]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9656]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9658]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9657]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9659]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9658]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9660]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9659]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9661]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9660]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9662]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9661]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9663]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9662]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9664]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9663]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9665]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9664]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9666]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9665]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9667]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9666]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9668]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9667]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9669]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9668]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9670]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9669]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9671]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9670]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9672]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9672]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9673]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9673]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9674]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9674]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9671]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9676]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9675]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9676]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9677]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9675]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9678]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9677]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9679]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9678]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9680]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9679]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9681]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9681]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9682]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9680]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9683]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9682]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9684]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9683]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9685]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9685]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9686]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9684]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9687]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9686]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9688]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9687]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9689]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9688]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9690]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9689]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9691]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9690]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9692]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9691]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9693]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9692]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9694]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9693]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9695]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9694]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9696]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9695]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9697]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9696]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9698]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9697]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9699]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9698]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9700]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9699]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9701]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9700]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9702]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9701]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9703]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9702]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9704]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9703]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9705]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9704]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9706]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9706]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9707]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9707]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9708]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9708]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9705]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9709]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9710]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9709]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9711]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9711]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9712]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9710]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9713]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9712]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9714]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9713]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9715]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9714]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9716]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9715]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9717]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9716]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9718]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9717]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9719]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9718]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9720]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9719]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9721]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9720]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9722]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9721]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9723]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9722]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9724]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9723]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9725]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9724]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9726]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9725]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9727]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9726]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9728]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9727]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9729]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9728]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9730]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9729]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9731]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9730]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9732]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9732]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9731]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9733]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9734]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9733]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9735]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9734]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9736]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9736]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9737]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9737]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9738]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9735]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9739]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9738]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9740]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9739]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9741]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9741]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9742]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9742]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9743]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9743]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9744]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9740]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9745]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9744]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9746]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9745]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9747]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9746]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9748]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9747]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9749]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9748]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9750]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9749]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9751]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9750]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9752]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9751]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9753]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9752]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9754]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9753]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9755]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9754]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9756]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9755]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9757]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9756]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9758]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9757]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9759]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9758]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9760]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9759]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9761]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9760]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9762]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9761]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9763]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9762]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9764]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9763]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9765]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9764]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9766]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9765]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9767]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9766]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9768]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9768]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9769]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9767]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9770]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9769]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9771]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9770]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9772]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9771]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9773]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9772]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9774]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9773]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9775]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9774]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9776]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9775]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9777]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9777]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9778]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9778]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9779]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9779]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9780]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9776]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9781]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9780]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9782]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9781]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9783]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9782]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9784]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9783]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9785]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9784]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9786]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9785]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9787]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9786]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9788]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9787]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9789]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9788]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9790]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9789]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9791]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9790]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9792]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9791]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9793]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9792]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9794]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9793]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9795]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9794]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9796]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9796]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9797]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9795]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9798]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9797]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9799]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9798]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9800]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9799]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9800]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9801]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9802]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9801]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9803]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9802]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9804]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9803]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9804]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9805]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9806]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9805]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9807]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9806]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9808]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9807]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9809]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9808]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9810]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9809]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9811]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9810]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9812]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9811]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9813]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9813]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9814]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9814]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9815]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9815]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9816]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9812]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9817]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9816]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9818]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9817]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9819]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9818]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9820]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9819]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9821]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9820]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9822]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9821]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9823]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9823]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9824]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9822]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9825]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9824]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9826]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9825]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9826]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9827]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9828]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9827]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9829]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9828]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9830]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9829]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9831]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9830]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9832]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9831]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9833]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9832]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9834]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9833]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9834]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9835]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9836]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9835]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9837]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9836]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9838]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9837]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9838]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9839]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9840]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9839]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9841]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9840]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9842]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9841]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9843]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9842]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9844]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9843]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9845]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9844]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9846]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9845]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9847]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9846]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9848]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9847]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9849]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9848]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9850]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9849]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9850]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9851]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9852]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9851]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9853]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9853]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9854]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9852]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9855]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9854]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9856]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9855]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9857]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9856]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9858]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9857]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9859]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9858]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9860]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9859]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9861]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9860]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9862]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9861]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9863]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9862]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9864]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9863]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9865]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9864]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9866]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9865]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9867]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9866]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9868]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9867]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9869]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9868]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9870]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9869]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9871]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9870]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9872]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9871]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9873]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9872]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9874]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9873]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9875]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9874]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9876]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9875]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9877]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9876]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9878]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9877]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9879]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9878]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9880]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9880]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9881]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9881]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9882]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9882]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9883]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9879]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9884]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9883]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9885]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9885]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9886]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9884]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9887]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9886]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9888]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9887]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9889]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9888]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9890]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9889]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9891]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9890]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9892]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9891]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9893]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9892]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9894]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9893]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9895]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9894]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9896]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9895]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9897]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9896]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9898]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9897]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9899]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9898]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9900]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9899]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9901]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9900]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9902]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9901]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9903]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9902]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9903]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9904]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9905]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9904]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9905]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9906]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9907]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9906]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9908]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9908]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9909]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9907]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9910]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9909]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9911]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9910]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9912]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9911]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9913]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9912]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9914]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9913]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9915]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9914]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9916]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9915]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9917]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9917]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9918]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9918]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9919]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9919]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9920]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9916]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9921]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9920]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9922]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9921]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9923]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9922]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9924]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9923]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9925]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9924]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9926]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9925]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9927]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9926]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9928]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9927]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9929]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9928]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9930]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9929]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9931]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9930]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9932]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9931]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9933]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9932]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9934]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9933]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9935]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9934]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9936]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9936]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9937]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9935]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9938]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9938]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9939]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9937]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9940]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9939]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9941]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9940]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9942]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9941]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9943]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9942]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9944]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9943]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9945]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9944]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9946]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9945]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9947]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9946]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9948]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9947]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9949]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9948]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9950]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9949]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9951]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9950]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9952]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9952]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9953]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9953]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9954]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9954]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9955]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9951]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9956]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9955]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9957]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9956]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9958]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9957]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9959]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9958]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9960]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9959]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9960]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9961]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9962]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9961]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9963]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9962]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9964]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9963]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9965]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9964]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9966]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9965]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9967]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9966]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9968]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9968]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9969]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9967]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9970]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9970]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9971]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9969]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9972]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9971]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9973]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9972]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9974]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9973]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9975]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9974]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9976]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9975]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9977]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9976]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9978]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9977]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 9979]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9978]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 9980]]} + {:process 4 :type :fail :f :txn :value [[:append 0 9979]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9981]]} + {:process 6 :type :fail :f :txn :value [[:append 3 9980]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9982]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9981]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 9983]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9982]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 9984]]} + {:process 4 :type :fail :f :txn :value [[:append 5 9983]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9985]]} + {:process 6 :type :fail :f :txn :value [[:append 2 9984]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9986]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9986]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 9987]]} + {:process 6 :type :fail :f :txn :value [[:append 5 9987]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9988]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9988]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 9989]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9985]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 9990]]} + {:process 6 :type :fail :f :txn :value [[:append 4 9989]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 9991]]} + {:process 4 :type :fail :f :txn :value [[:append 2 9990]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 9992]]} + {:process 4 :type :fail :f :txn :value [[:append 1 9992]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 9993]]} + {:process 6 :type :fail :f :txn :value [[:append 1 9991]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 9994]]} + {:process 4 :type :fail :f :txn :value [[:append 7 9993]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 9995]]} + {:process 6 :type :fail :f :txn :value [[:append 7 9994]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 9996]]} + {:process 4 :type :fail :f :txn :value [[:append 6 9995]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 9997]]} + {:process 6 :type :fail :f :txn :value [[:append 0 9996]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 9998]]} + {:process 4 :type :fail :f :txn :value [[:append 4 9997]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 9999]]} + {:process 6 :type :fail :f :txn :value [[:append 6 9998]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10000]]} + {:process 4 :type :fail :f :txn :value [[:append 3 9999]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10001]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10000]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10002]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10001]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10003]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10002]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10004]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10003]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10005]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10004]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10006]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10005]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10007]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10006]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10008]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10007]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10009]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10008]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10010]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10009]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10011]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10010]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10012]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10011]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10013]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10012]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10014]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10013]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10015]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10014]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10016]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10016]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10015]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10017]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10018]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10017]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10019]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10018]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10020]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10019]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10021]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10021]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10022]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10020]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10023]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10022]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10024]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10023]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10025]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10024]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10026]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10025]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10027]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10026]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10028]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10027]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10029]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10028]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10030]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10029]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10031]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10030]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10032]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10031]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10033]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10032]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10034]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10033]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10035]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10034]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10036]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10035]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10037]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10036]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10038]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10037]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10039]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10038]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10040]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10039]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10041]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10040]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10042]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10041]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10043]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10042]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10043]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10045]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10044]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10044]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10046]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10045]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10046]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10047]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10048]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10047]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10049]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10048]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10050]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10049]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10051]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10050]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10052]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10051]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10053]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10052]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10054]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10053]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10055]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10054]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10056]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10055]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10057]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10056]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10058]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10057]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10059]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10058]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10060]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10059]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10061]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10060]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10062]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10061]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10063]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10062]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10064]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10063]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10065]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10064]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10066]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10065]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10067]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10066]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10068]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10067]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10069]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10068]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10070]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10069]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10071]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10070]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10072]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10071]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10073]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10072]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10074]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10074]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10073]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10075]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10076]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10075]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10077]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10076]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10078]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10077]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10079]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10078]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10080]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10079]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10081]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10080]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10082]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10081]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10082]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10083]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10084]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10083]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10085]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10084]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10086]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10085]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10086]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10087]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10088]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10087]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10089]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10088]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10090]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10089]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10090]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10091]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10092]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10091]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10093]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10092]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10094]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10093]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10095]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10094]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10096]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10096]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10097]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10095]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10098]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10098]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10099]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10099]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10100]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10100]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10097]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10101]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10102]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10101]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10103]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10102]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10104]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10103]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10104]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10105]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10106]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10105]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10107]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10106]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10108]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10107]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10108]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10109]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10110]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10109]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10111]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10110]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10112]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10111]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10113]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10112]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10114]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10113]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10115]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10114]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10116]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10115]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10117]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10116]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10118]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10117]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10119]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10119]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10120]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10118]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10121]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10120]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10122]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10121]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10123]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10122]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10124]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10123]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10125]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10124]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10126]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10126]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10127]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10127]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10128]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10128]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10129]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10125]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10130]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10129]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10131]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10131]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10130]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10132]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10133]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10132]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10134]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10133]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10135]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10134]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10136]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10135]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10137]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10136]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10138]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10137]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10139]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10138]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10140]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10140]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10141]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10139]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10141]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10142]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10143]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10143]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10144]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10142]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10145]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10144]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10146]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10145]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10146]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10147]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10148]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10147]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10149]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10148]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10150]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10149]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10150]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10151]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10152]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10151]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10153]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10153]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10154]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10154]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10155]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10155]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10152]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10157]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10156]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10156]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10158]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10157]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10158]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10159]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10160]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10159]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10161]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10160]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10162]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10161]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10163]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10162]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10164]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10163]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10165]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10164]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10166]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10166]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10167]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10165]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10168]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10167]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10169]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10168]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10170]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10169]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10171]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10170]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10172]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10171]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10173]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10172]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10174]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10173]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10174]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10175]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10176]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10175]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10177]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10176]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10178]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10177]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10179]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10178]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10180]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10179]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10181]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10180]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10182]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10181]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10183]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10183]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10184]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10184]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10185]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10185]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10186]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10186]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10187]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10182]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10188]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10187]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10189]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10188]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10190]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10189]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10190]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10191]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10192]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10191]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10193]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10192]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10194]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10193]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10194]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10195]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10196]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10195]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10197]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10196]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10198]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10197]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10199]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10198]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10200]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10199]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10201]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10200]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10202]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10201]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10202]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10203]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10204]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10203]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10205]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10204]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10206]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10205]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10206]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10207]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10208]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10207]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10209]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10208]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10210]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10209]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10211]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10211]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10212]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10210]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10213]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10212]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10214]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10214]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10215]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10213]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10216]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10215]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10217]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10216]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10218]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10217]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10219]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10218]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10220]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10219]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10220]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10221]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10222]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10221]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10223]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10222]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10224]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10223]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10224]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10225]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10226]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10225]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10227]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10226]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10228]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10227]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10228]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10229]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10230]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10229]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10231]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10230]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10232]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10231]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10233]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10232]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10234]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10233]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10235]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10234]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10236]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10236]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10237]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10235]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10238]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10237]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10239]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10238]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10240]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10240]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10241]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10241]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10242]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10242]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10243]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10239]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10244]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10243]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10244]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10245]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10246]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10245]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10247]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10246]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10248]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10247]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10249]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10248]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10250]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10249]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10251]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10250]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10252]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10251]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10253]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10252]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10254]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10253]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10255]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10254]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10256]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10255]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10257]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10256]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10258]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10257]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10259]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10258]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10260]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10259]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10261]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10260]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10262]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10262]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10263]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10261]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10264]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10263]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10265]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10264]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10266]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10265]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10267]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10267]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10268]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10268]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10269]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10269]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10270]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10266]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10270]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10271]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10272]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10271]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10273]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10272]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10274]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10273]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10275]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10274]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10276]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10275]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10277]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10276]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10278]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10277]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10279]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10278]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10280]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10279]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10281]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10280]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10282]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10281]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10283]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10282]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10284]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10283]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10285]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10285]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10286]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10284]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10287]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10286]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10288]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10287]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10289]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10288]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10290]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10289]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10291]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10290]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10292]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10291]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10293]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10292]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10294]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10293]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10295]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10295]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10296]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10296]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10297]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10297]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10294]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10298]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10299]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10298]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10300]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10299]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10301]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10300]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10302]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10301]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10302]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10303]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10304]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10304]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10303]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10305]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10306]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10305]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10307]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10307]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10308]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10306]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10309]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10308]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10310]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10309]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10311]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10310]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10312]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10311]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10313]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10312]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10314]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10313]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10315]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10314]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10316]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10315]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10317]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10316]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10318]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10317]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10319]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10318]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10320]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10319]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10321]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10320]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10322]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10321]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10323]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10322]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10324]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10323]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10325]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10324]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10326]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10326]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10327]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10327]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10328]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10328]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10329]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10329]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10330]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10325]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10330]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10331]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10332]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10331]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10333]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10332]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10334]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10333]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10335]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10334]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10336]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10335]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10337]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10336]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10338]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10337]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10339]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10338]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10340]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10339]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10341]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10340]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10342]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10341]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10343]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10342]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10344]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10343]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10345]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10344]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10346]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10345]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10347]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10346]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10348]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10347]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10349]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10348]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10350]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10349]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10351]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10350]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10352]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10351]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10353]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10352]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10354]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10354]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10355]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10353]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10356]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10355]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10357]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10357]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10356]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10358]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10359]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10358]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10360]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10359]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10361]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10360]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10362]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10361]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10363]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10362]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10364]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10363]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10365]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10364]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10366]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10365]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10367]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10366]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10368]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10367]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10369]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10368]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10370]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10369]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10371]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10370]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10372]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10371]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10373]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10372]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10374]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10373]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10375]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10374]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10376]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10376]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10377]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10375]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10378]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10378]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10379]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10377]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10380]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10379]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10381]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10380]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10382]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10381]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10383]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10382]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10384]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10384]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10385]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10385]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10386]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10386]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10387]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10383]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10388]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10387]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10389]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10388]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10390]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10389]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10391]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10390]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10392]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10391]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10393]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10392]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10394]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10393]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10394]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10395]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10396]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10395]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10397]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10396]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10398]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10397]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10399]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10399]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10400]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10398]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10401]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10401]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10402]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10400]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10403]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10402]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10404]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10404]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10405]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10403]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10406]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10405]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10407]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10406]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10408]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10407]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10409]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10408]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10410]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10410]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10411]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10411]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10412]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10412]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10409]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10413]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10414]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10413]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10415]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10415]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10414]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10416]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10417]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10417]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10418]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10416]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10419]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10418]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10420]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10419]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10421]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10420]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10422]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10422]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10423]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10421]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10424]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10423]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10425]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10424]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10426]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10425]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10427]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10426]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10428]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10427]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10429]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10428]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10430]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10429]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10430]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10431]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10432]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10431]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10433]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10432]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10434]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10433]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10435]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10434]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10436]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10435]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10437]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10436]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10438]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10437]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10438]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10439]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10440]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10439]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10441]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10441]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10442]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10442]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10443]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10440]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10444]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10444]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10445]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10443]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10445]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10446]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10447]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10447]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10448]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10446]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10449]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10448]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10450]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10449]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10451]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10450]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10452]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10451]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10453]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10452]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10454]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10453]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10455]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10455]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10456]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10454]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10456]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10457]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10458]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10457]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10459]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10458]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10460]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10459]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10461]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10460]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10462]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10461]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10463]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10462]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10464]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10463]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10465]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10464]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10466]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10465]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10467]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10466]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10468]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10468]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10469]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10469]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10470]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10470]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10471]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10467]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10472]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10471]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10473]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10472]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10474]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10473]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10475]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10474]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10476]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10475]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10477]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10476]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10478]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10477]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10479]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10478]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10480]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10479]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10481]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10480]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10482]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10481]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10483]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10482]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10484]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10483]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10485]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10484]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10486]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10485]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10486]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10487]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10488]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10487]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10489]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10488]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10490]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10489]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10490]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10491]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10492]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10491]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10493]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10492]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10494]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10493]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10495]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10495]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10496]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10494]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10497]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10496]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10498]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10498]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10499]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10499]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10500]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10500]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10501]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10497]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10502]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10501]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10503]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10502]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10503]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10504]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10505]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10504]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10506]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10505]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10507]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10506]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10508]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10507]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10508]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10509]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10510]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10509]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10511]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10510]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10512]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10512]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10513]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10511]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10514]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10513]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10515]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10515]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10516]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10514]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10517]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10517]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10518]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10516]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10519]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10518]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10520]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10519]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10521]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10520]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10521]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10522]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10523]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10522]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10523]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10524]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10525]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10524]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10526]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10525]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10527]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10526]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10528]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10527]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10529]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10528]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10530]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10530]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10531]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10531]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10532]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10532]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10533]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10533]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10534]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10534]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10535]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10535]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10536]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10529]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10537]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10536]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10538]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10537]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10539]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10538]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10540]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10539]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10541]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10540]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10542]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10541]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10543]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10542]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10544]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10543]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10545]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10544]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10546]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10545]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10547]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10546]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10548]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10547]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10549]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10548]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10550]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10549]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10551]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10550]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10552]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10551]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10553]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10552]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10554]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10553]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10555]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10554]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10556]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10555]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10557]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10556]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10558]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10557]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10559]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10558]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10560]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10559]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10561]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10560]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10562]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10561]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10563]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10562]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10564]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10563]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10565]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10564]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10566]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10565]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10567]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10566]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10568]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10567]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10569]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10568]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10569]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10570]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10571]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10570]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10572]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10571]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10573]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10572]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10574]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10573]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10575]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10574]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10575]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10577]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10576]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10577]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10578]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10576]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10579]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10578]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10580]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10579]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10580]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10581]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10582]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10581]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10583]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10583]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10584]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10582]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10585]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10585]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10586]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10584]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10587]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10586]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10588]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10587]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10588]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10589]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10590]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10589]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10591]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10591]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10592]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10590]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10593]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10592]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10594]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10593]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10595]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10594]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10595]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10596]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10597]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10597]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10598]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10596]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10599]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10598]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10600]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10599]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10601]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10600]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10602]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10601]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10603]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10602]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10604]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10603]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10604]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10605]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10606]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10605]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10607]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10606]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10608]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10608]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10609]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10607]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10610]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10609]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10611]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10611]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10612]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10610]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10613]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10612]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10614]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10614]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10615]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10615]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10616]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10616]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10617]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10617]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10618]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10618]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10619]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10613]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10619]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10620]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10621]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10620]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10622]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10621]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10623]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10622]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10624]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10623]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10624]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10625]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10626]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10625]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10627]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10626]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10628]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10628]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10629]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10629]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10630]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10627]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10631]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10630]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10632]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10632]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10633]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10631]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10634]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10633]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10635]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10634]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10635]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10636]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10637]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10637]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10638]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10636]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10639]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10638]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10640]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10639]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10640]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10641]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10642]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10641]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10643]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10642]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10644]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10643]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10644]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10645]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10646]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10646]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10647]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10645]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10648]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10647]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10649]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10648]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10650]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10649]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10651]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10651]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10652]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10652]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10653]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10653]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10654]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10654]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10655]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10650]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10656]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10656]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10657]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10655]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10658]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10658]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10659]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10659]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10660]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10657]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10661]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10661]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10662]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10660]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10663]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10662]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10664]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10663]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10664]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10665]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10666]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10665]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10667]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10666]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10668]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10667]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10669]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10668]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10670]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10669]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10671]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10670]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10672]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10672]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10673]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10673]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10674]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10671]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10675]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10675]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10676]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10674]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10677]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10676]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10678]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10677]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10679]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10678]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10680]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10680]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10681]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10681]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10682]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10682]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10683]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10679]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10683]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10684]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10685]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10685]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10686]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10684]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10687]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10686]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10688]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10687]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10689]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10688]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10690]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10689]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10691]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10690]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10692]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10691]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10693]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10692]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10694]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10693]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10695]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10695]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10696]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10694]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10697]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10697]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10698]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10696]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10699]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10698]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10700]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10699]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10700]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10701]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10702]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10701]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10703]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10702]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10704]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10703]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10705]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10704]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10706]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10705]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10707]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10706]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10708]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10707]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10709]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10709]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10710]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10710]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10711]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10711]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10712]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10708]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10712]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10714]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10713]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10714]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10715]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10715]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10716]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10713]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10717]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10717]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10718]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10716]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10719]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10718]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10720]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10720]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10721]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10719]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10722]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10721]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10723]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10722]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10724]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10723]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10725]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10724]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10726]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10725]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10727]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10726]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10728]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10727]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10729]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10728]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10730]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10729]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10731]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10730]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10732]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10731]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10733]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10732]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10734]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10733]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10735]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10734]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10736]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10735]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10737]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10736]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10738]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10738]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10739]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10739]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10740]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10737]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10741]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10740]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10742]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10742]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10743]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10741]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10743]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10744]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10745]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10744]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10746]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10745]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10747]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10746]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10748]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10747]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10749]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10748]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10750]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10750]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10751]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10751]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10752]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10749]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10753]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10752]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10754]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10753]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10755]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10754]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10755]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10757]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10756]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10757]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10756]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10758]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10759]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10758]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10760]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10759]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10761]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10760]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10762]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10761]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10762]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10763]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10764]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10764]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10765]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10763]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10766]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10765]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10767]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10766]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10767]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10768]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10769]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10768]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10770]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10769]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10771]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10770]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10772]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10772]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10773]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10773]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10774]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10774]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10775]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10775]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10776]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10771]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10776]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10778]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10777]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10778]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10779]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10779]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10780]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10777]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10781]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10780]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10782]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10781]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10782]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10783]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10784]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10784]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10785]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10783]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10786]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10785]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10787]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10786]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10787]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10788]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10789]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10788]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10790]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10789]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10791]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10790]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10792]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10791]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10793]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10792]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10794]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10793]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10795]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10795]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10796]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10794]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10797]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10796]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10798]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10797]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10799]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10798]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10800]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10799]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10801]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10800]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10802]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10802]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10803]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10801]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10804]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10804]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10805]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10805]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10806]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10806]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10807]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10803]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10808]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10807]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10809]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10808]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10810]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10809]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10811]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10810]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10812]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10811]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10812]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10814]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10813]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10814]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10815]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10813]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10816]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10815]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10817]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10816]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10818]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10817]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10819]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10818]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10820]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10819]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10821]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10820]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10822]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10821]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10823]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10822]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10824]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10823]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10825]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10824]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10826]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10825]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10827]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10826]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10828]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10828]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10829]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10827]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10830]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10829]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10831]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10831]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10832]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10830]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10833]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10832]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10834]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10834]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10835]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10835]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10836]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10836]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10837]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10837]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10838]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10838]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10833]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10839]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10840]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10839]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10841]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10840]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10842]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10841]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10843]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10842]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10844]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10843]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10845]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10845]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10846]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10844]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10847]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10846]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10848]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10847]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10849]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10848]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10850]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10849]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10851]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10850]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10852]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10851]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10853]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10852]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10854]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10853]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10855]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10854]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10856]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10855]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10857]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10856]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10858]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10857]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10859]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10858]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10860]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10859]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10861]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10860]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10862]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10861]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10863]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10862]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10864]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10864]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10865]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10865]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10866]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10866]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10867]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10863]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10868]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10868]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10869]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10867]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10870]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10869]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10871]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10870]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10871]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10872]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10873]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10872]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10874]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10873]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10875]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10874]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10876]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10875]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10877]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10876]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10877]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10878]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10879]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10878]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10880]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10879]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10881]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10880]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10882]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10881]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10883]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10882]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10884]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10883]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10884]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10885]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10886]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10885]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10887]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10886]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10888]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10887]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10889]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10888]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10890]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10889]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10891]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10891]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10892]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10892]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10893]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10893]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10894]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10890]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10895]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10894]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10896]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10895]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10896]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10897]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10898]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10897]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10899]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10898]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10900]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10899]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10901]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10900]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10902]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10901]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10903]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10902]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10904]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10903]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10905]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10904]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10906]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10905]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10907]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10906]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10908]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10907]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10909]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10908]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10910]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10909]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10911]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10910]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10912]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10911]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10913]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10912]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10914]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10913]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10915]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10914]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10916]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10915]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10917]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10916]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10918]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10917]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10919]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10918]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10920]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10920]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10921]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10919]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10921]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10922]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10923]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10922]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10924]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10923]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10925]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10924]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10926]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10925]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10927]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10927]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10928]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10926]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10929]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10928]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10930]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10930]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10931]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10929]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10931]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10932]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10933]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10932]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10934]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10933]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10935]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10934]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10936]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10935]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10937]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10936]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10938]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10937]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10939]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10938]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10940]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10940]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10941]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10939]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10942]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10941]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10943]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10942]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10944]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10943]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10945]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10944]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10946]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10945]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10947]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10946]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10948]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10947]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10949]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10948]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10950]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10949]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10951]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10951]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10952]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10952]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10953]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10953]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10954]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10954]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10955]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10955]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10956]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10956]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10957]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10957]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10958]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10950]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10959]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10959]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10960]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10958]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10961]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10960]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10962]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10961]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10963]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10962]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10964]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10963]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10965]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10964]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10966]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10965]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10966]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10967]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10968]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10967]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10969]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10968]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10970]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10969]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10970]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10971]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10972]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10971]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10973]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10972]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10974]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10973]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10974]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10975]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 10976]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10975]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10977]]} + {:process 4 :type :fail :f :txn :value [[:append 7 10976]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10978]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10977]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10978]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10979]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 10980]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10979]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10981]]} + {:process 4 :type :fail :f :txn :value [[:append 4 10980]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10982]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10981]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 10983]]} + {:process 6 :type :fail :f :txn :value [[:append 2 10983]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10984]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10984]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 10985]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10982]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 5 10985]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10986]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 10987]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10986]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 10988]]} + {:process 4 :type :fail :f :txn :value [[:append 1 10987]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10989]]} + {:process 6 :type :fail :f :txn :value [[:append 4 10988]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 10990]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10989]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 10991]]} + {:process 6 :type :fail :f :txn :value [[:append 1 10990]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 10992]]} + {:process 4 :type :fail :f :txn :value [[:append 6 10991]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 10993]]} + {:process 6 :type :fail :f :txn :value [[:append 7 10992]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 10994]]} + {:process 4 :type :fail :f :txn :value [[:append 5 10993]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 10995]]} + {:process 6 :type :fail :f :txn :value [[:append 0 10994]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 10996]]} + {:process 4 :type :fail :f :txn :value [[:append 3 10995]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 10997]]} + {:process 6 :type :fail :f :txn :value [[:append 6 10996]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 10998]]} + {:process 4 :type :fail :f :txn :value [[:append 2 10997]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 10999]]} + {:process 6 :type :fail :f :txn :value [[:append 3 10998]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 11000]]} + {:process 4 :type :fail :f :txn :value [[:append 0 10999]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11001]]} + {:process 6 :type :fail :f :txn :value [[:append 1 11000]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 11002]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11001]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11003]]} + {:process 6 :type :fail :f :txn :value [[:append 2 11002]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 11004]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11003]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11005]]} + {:process 6 :type :fail :f :txn :value [[:append 0 11004]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 11006]]} + {:process 6 :type :fail :f :txn :value [[:append 5 11006]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 11007]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11005]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11008]]} + {:process 6 :type :fail :f :txn :value [[:append 3 11007]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 11009]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11008]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11010]]} + {:process 6 :type :fail :f :txn :value [[:append 4 11009]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 11011]]} + {:process 6 :type :fail :f :txn :value [[:append 2 11011]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 11012]]} + {:process 6 :type :fail :f :txn :value [[:append 7 11012]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 11013]]} + {:process 6 :type :fail :f :txn :value [[:append 5 11013]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 11014]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11010]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11015]]} + {:process 6 :type :fail :f :txn :value [[:append 6 11014]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11015]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11017]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 11016]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11017]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11018]]} + {:process 6 :type :fail :f :txn :value [[:append 4 11016]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11018]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 11019]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11020]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11020]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11021]]} + {:process 6 :type :fail :f :txn :value [[:append 1 11019]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11021]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11022]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 11023]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11022]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11024]]} + {:process 6 :type :fail :f :txn :value [[:append 7 11023]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 11025]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11024]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11026]]} + {:process 6 :type :fail :f :txn :value [[:append 0 11025]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11026]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 11027]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11028]]} + {:process 6 :type :fail :f :txn :value [[:append 6 11027]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 11029]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11028]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11030]]} + {:process 6 :type :fail :f :txn :value [[:append 3 11029]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11030]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 11031]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11032]]} + {:process 6 :type :fail :f :txn :value [[:append 1 11031]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 11033]]} + {:process 6 :type :fail :f :txn :value [[:append 2 11033]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11032]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 11034]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11035]]} + {:process 6 :type :fail :f :txn :value [[:append 0 11034]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 11036]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11035]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11037]]} + {:process 6 :type :fail :f :txn :value [[:append 5 11036]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 11038]]} + {:process 6 :type :fail :f :txn :value [[:append 3 11038]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 11039]]} + {:process 6 :type :fail :f :txn :value [[:append 4 11039]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 11040]]} + {:process 6 :type :fail :f :txn :value [[:append 2 11040]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 11041]]} + {:process 6 :type :fail :f :txn :value [[:append 7 11041]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11037]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11042]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 11043]]} + {:process 6 :type :fail :f :txn :value [[:append 5 11043]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 11044]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11042]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11045]]} + {:process 6 :type :fail :f :txn :value [[:append 6 11044]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 11046]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11045]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11047]]} + {:process 6 :type :fail :f :txn :value [[:append 4 11046]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 11048]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11047]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11049]]} + {:process 6 :type :fail :f :txn :value [[:append 1 11048]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 11050]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11049]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11051]]} + {:process 6 :type :fail :f :txn :value [[:append 7 11050]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 11052]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11051]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11053]]} + {:process 6 :type :fail :f :txn :value [[:append 0 11052]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 11054]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11053]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11055]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11055]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11056]]} + {:process 6 :type :fail :f :txn :value [[:append 6 11054]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 11057]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11056]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11058]]} + {:process 6 :type :fail :f :txn :value [[:append 3 11057]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11058]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 11059]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11060]]} + {:process 6 :type :fail :f :txn :value [[:append 1 11059]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 11061]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11060]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11062]]} + {:process 6 :type :fail :f :txn :value [[:append 2 11061]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 11063]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11062]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11064]]} + {:process 6 :type :fail :f :txn :value [[:append 0 11063]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 11065]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11064]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11066]]} + {:process 6 :type :fail :f :txn :value [[:append 5 11065]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 11067]]} + {:process 6 :type :fail :f :txn :value [[:append 3 11067]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 11068]]} + {:process 6 :type :fail :f :txn :value [[:append 4 11068]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 11069]]} + {:process 6 :type :fail :f :txn :value [[:append 2 11069]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 11070]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11066]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:append 7 11070]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11071]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 11072]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11071]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11073]]} + {:process 6 :type :fail :f :txn :value [[:append 5 11072]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 11074]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11073]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11075]]} + {:process 6 :type :fail :f :txn :value [[:append 6 11074]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 11076]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11075]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11077]]} + {:process 6 :type :fail :f :txn :value [[:append 4 11076]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 11078]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11077]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11079]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11079]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11080]]} + {:process 6 :type :fail :f :txn :value [[:append 1 11078]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 11081]]} + {:process 6 :type :fail :f :txn :value [[:append 7 11081]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 11082]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11080]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11083]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11083]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11084]]} + {:process 6 :type :fail :f :txn :value [[:append 0 11082]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 11085]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11084]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11086]]} + {:process 6 :type :fail :f :txn :value [[:append 6 11085]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 11087]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11086]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11088]]} + {:process 6 :type :fail :f :txn :value [[:append 3 11087]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11088]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 11089]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11090]]} + {:process 6 :type :fail :f :txn :value [[:append 1 11089]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 11091]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11090]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11092]]} + {:process 6 :type :fail :f :txn :value [[:append 2 11091]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11092]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 11093]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11094]]} + {:process 6 :type :fail :f :txn :value [[:append 0 11093]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 11095]]} + {:process 6 :type :fail :f :txn :value [[:append 5 11095]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 11096]]} + {:process 6 :type :fail :f :txn :value [[:append 3 11096]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 11097]]} + {:process 6 :type :fail :f :txn :value [[:append 4 11097]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 11098]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11094]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11099]]} + {:process 6 :type :fail :f :txn :value [[:append 2 11098]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 11100]]} + {:process 6 :type :fail :f :txn :value [[:append 7 11100]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11099]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11101]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11101]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11102]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11102]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11103]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11103]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11104]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 11105]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11104]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11106]]} + {:process 6 :type :fail :f :txn :value [[:append 5 11105]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 11107]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11106]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11108]]} + {:process 6 :type :fail :f :txn :value [[:append 6 11107]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11108]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 11109]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11110]]} + {:process 6 :type :fail :f :txn :value [[:append 4 11109]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 11111]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11110]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11112]]} + {:process 6 :type :fail :f :txn :value [[:append 1 11111]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11112]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 11113]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11114]]} + {:process 6 :type :fail :f :txn :value [[:append 7 11113]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 11115]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11114]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11116]]} + {:process 6 :type :fail :f :txn :value [[:append 0 11115]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11116]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 11117]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11118]]} + {:process 6 :type :fail :f :txn :value [[:append 6 11117]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 11119]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11118]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11120]]} + {:process 6 :type :fail :f :txn :value [[:append 3 11119]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 11121]]} + {:process 6 :type :fail :f :txn :value [[:append 1 11121]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 11122]]} + {:process 6 :type :fail :f :txn :value [[:append 2 11122]]} + {:process 6 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 11123]]} + {:process 6 :type :fail :f :txn :value [[:append 0 11123]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 11124]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11120]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11125]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11125]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11126]]} + {:process 6 :type :fail :f :txn :value [[:append 5 11124]]} + {:process 6 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 11127]]} + {:process 6 :type :fail :f :txn :value [[:append 3 11127]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 11128]]} + {:process 6 :type :fail :f :txn :value [[:append 4 11128]]} + {:process 6 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 2 11129]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11126]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11130]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11130]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11131]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11131]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11132]]} + {:process 6 :type :fail :f :txn :value [[:append 2 11129]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 11133]]} + {:process 6 :type :fail :f :txn :value [[:append 7 11133]]} + {:process 6 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11132]]} + {:process 6 :type :invoke :f :txn :value [[:append 5 11134]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11135]]} + {:process 6 :type :fail :f :txn :value [[:append 5 11134]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 11136]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11135]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11137]]} + {:process 6 :type :fail :f :txn :value [[:append 6 11136]]} + {:process 6 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 4 11138]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11137]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11139]]} + {:process 6 :type :fail :f :txn :value [[:append 4 11138]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 11140]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11139]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11141]]} + {:process 6 :type :fail :f :txn :value [[:append 1 11140]]} + {:process 6 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 7 11142]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11141]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11143]]} + {:process 6 :type :fail :f :txn :value [[:append 7 11142]]} + {:process 6 :type :invoke :f :txn :value [[:append 0 11144]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11143]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11145]]} + {:process 6 :type :fail :f :txn :value [[:append 0 11144]]} + {:process 6 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 6 11146]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11145]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11147]]} + {:process 6 :type :fail :f :txn :value [[:append 6 11146]]} + {:process 6 :type :invoke :f :txn :value [[:append 3 11148]]} + {:process 6 :type :fail :f :txn :value [[:append 3 11148]]} + {:process 6 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 6 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 6 :type :invoke :f :txn :value [[:append 1 11149]]} + {:process 6 :type :fail :f :txn :value [[:append 1 11149]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11147]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11150]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11150]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11151]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11151]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11152]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11152]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11153]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11153]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11154]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11154]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11155]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11155]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11156]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11156]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11157]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11157]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11158]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11158]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11159]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11159]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11160]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11160]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11161]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11161]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11162]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11162]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11163]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11163]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11164]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11164]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11165]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11165]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11166]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11166]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11167]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11167]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11168]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11168]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11169]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11169]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11170]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11170]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11171]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11171]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11172]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11172]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11173]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11173]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11174]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11174]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11175]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11175]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11176]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11176]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11177]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11177]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11178]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11178]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11179]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11179]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11180]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11180]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11181]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11181]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11182]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11182]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11183]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11183]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11184]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11184]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11185]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11185]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11186]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11186]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11187]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11187]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11188]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11188]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11189]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11189]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11190]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11190]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11191]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11191]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11192]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11192]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11193]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11193]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11194]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11194]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11195]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11195]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11196]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11196]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11197]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11197]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11198]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11198]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11199]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11199]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11200]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11200]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11201]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11201]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11202]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11202]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11203]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11203]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11204]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11204]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11205]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11205]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11206]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11206]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11207]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11207]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11208]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11208]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11209]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11209]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11210]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11210]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11211]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11211]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11212]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11212]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11213]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11213]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11214]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11214]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11215]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11215]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11216]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11216]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11217]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11217]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11218]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11218]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11219]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11219]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11220]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11220]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11221]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11221]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11222]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11222]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11223]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11223]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11224]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11224]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11225]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11225]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11226]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11226]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11227]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11227]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11228]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11228]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11229]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11229]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11230]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11230]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11231]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11231]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11232]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11232]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11233]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11233]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11234]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11234]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11235]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11235]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11236]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11236]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11237]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11237]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11238]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11238]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11239]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11239]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11240]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11240]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11241]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11241]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11242]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11242]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11243]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11243]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11244]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11244]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11245]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11245]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11246]]} + {:process 2 :type :fail :f :txn :value [[:append 7 1662]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11246]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11247]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11248]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11247]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11249]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11249]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11250]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11250]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11251]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11251]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11252]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11252]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11253]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11253]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11254]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11254]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11255]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11255]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11256]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11256]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11257]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11248]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11257]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11259]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11258]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11259]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11260]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11258]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11260]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11262]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11261]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11262]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11261]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11263]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11264]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11263]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11265]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11264]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11266]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11265]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11267]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11266]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11268]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11267]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11269]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11268]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11270]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11269]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11271]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11270]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11272]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11271]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11273]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11272]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11273]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11274]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11275]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11274]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11276]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11275]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11277]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11276]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11277]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11278]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11279]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11278]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11280]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11279]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11281]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11280]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11281]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11282]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11283]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11282]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11284]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11283]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11285]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11284]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11285]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11286]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11287]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11286]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11288]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11287]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11289]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11288]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11289]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11290]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11291]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11290]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11292]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11291]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11293]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11292]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11293]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11294]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11295]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11294]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11296]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11295]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11297]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11296]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11297]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11298]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11299]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11298]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11300]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11299]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11301]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11300]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11301]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11302]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11303]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11302]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11304]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11303]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11305]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11305]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11306]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11306]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11307]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11307]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11308]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11308]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11309]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11309]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11310]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11310]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11311]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11311]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11312]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11312]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11313]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11313]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11314]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11314]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11315]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11315]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11316]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11316]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11317]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11317]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11318]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11318]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11319]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11319]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11320]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11320]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11321]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11321]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11322]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11322]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11323]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11323]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11324]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11324]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11325]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11304]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11325]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11326]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11326]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11327]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11327]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11328]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11328]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11329]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11329]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11330]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11330]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11331]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11331]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11332]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11332]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11333]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11334]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11334]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11335]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11333]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11336]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11335]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11337]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11336]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11338]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11337]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11339]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11338]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11340]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11339]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11341]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11340]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11342]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11341]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11343]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11342]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11344]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11343]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11345]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11344]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11346]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11345]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11347]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11346]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11348]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11347]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11349]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11348]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11350]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11349]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11351]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11350]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11352]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11351]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11353]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11353]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11354]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11352]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11355]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11355]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11356]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11354]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11356]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11357]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11358]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11357]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11359]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11358]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11360]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11359]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11361]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11360]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11362]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11362]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11363]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11363]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11364]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11364]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11365]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11361]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11365]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11366]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11367]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11366]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11368]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11367]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11368]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11369]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11370]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11369]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11370]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11371]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11372]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11371]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11373]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11372]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11374]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11373]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11375]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11374]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11375]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11376]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11377]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11376]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11378]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11377]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11379]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11378]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11379]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11380]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11381]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11380]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11381]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11382]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11383]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11382]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11384]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11383]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11385]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11384]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11386]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11385]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11387]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11386]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11388]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11387]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11389]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11388]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11390]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11389]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11391]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11391]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11392]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11392]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11393]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11393]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11390]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11394]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11395]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11394]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11396]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11395]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11397]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11396]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11397]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11398]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11399]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11398]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11400]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11399]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11401]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11400]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11401]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11402]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11403]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11402]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11404]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11403]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11405]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11404]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11405]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11406]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11407]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11406]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11408]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11407]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11409]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11408]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11409]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11410]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11411]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11410]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11412]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11411]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11413]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11412]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11413]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11414]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11415]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11414]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11416]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11415]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11417]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11416]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11417]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11418]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11419]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11418]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11420]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11420]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11421]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11421]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11422]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11419]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11423]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11422]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11423]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11424]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11425]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11424]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11426]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11425]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11427]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11426]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11427]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11428]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11429]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11428]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11430]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11429]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11431]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11430]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11431]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11432]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11433]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11432]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11434]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11433]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11435]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11434]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11435]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11436]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11437]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11436]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11438]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11437]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11439]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11438]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11440]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11439]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11441]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11441]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11442]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11440]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11443]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11442]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11444]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11443]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11445]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11444]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11446]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11445]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11447]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11447]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11448]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11448]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11449]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11449]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11446]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11450]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11451]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11450]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11452]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11451]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11453]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11452]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11453]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11454]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11455]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11454]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11456]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11455]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11457]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11456]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11457]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11458]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11459]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11458]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11460]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11459]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11461]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11460]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11462]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11461]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11463]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11462]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11464]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11463]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11465]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11464]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11465]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11466]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11467]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11466]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11468]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11467]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11469]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11468]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11470]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11469]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11471]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11470]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11472]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11471]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11473]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11472]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11473]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11474]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11475]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11474]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11476]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11476]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11477]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11477]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11478]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11475]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11479]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11478]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11479]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11480]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11481]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11480]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11482]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11481]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11483]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11482]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11483]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11484]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11485]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11484]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11486]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11485]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11487]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11486]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11487]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11488]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11489]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11488]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11490]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11489]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11491]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11490]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11491]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11492]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11493]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11492]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11494]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11493]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11495]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11494]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11496]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11495]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11496]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11497]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11498]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11497]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11498]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11499]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11500]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11499]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11501]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11500]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11502]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11501]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11503]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11502]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11504]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11504]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11505]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11505]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11506]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11506]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11507]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11503]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11508]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11507]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11509]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11508]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11510]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11509]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11511]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11510]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11512]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11511]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11513]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11512]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11514]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11513]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11515]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11514]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11516]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11515]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11517]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11516]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11518]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11517]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11519]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11518]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11520]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11519]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11521]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11520]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11522]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11521]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11523]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11522]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11524]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11523]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11525]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11524]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11526]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11525]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11527]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11526]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11528]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11527]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11529]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11528]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11530]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11529]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11531]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11531]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11532]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11532]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11533]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11530]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11534]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11533]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11535]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11534]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11536]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11535]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11537]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11536]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11538]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11537]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11538]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11539]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11540]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11539]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11541]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11540]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11542]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11541]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11543]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11542]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11544]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11543]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11545]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11544]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11546]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11545]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11547]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11546]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11548]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11547]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11549]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11548]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11550]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11549]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11551]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11550]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11551]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11552]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11552]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11553]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11554]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11553]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11555]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11554]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11556]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11555]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11557]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11556]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11558]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11557]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11559]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11559]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11560]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11560]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11561]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11561]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11562]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11562]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11563]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11558]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11564]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11563]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11565]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11564]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11566]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11565]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11567]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11566]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11568]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11567]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11569]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11568]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11570]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11569]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11571]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11570]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11572]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11571]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11573]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11572]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11574]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11573]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11575]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11574]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11576]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11575]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11577]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11576]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11578]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11577]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11579]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11578]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11580]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11579]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11581]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11580]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11582]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11581]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11583]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11582]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11584]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11583]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11585]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11584]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11586]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11585]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11587]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11586]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11588]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11587]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11589]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11589]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11590]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11590]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11591]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11588]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11592]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11591]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11593]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11592]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11594]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11593]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11595]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11594]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11596]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11595]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11596]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11597]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11598]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11597]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11599]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11598]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11600]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11599]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11600]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11601]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11602]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11601]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11603]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11602]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11604]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11603]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11605]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11604]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11606]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11605]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11607]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11606]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11608]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11607]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11609]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11609]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11610]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11608]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11611]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11610]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11611]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11612]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11613]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11612]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11614]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11613]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11615]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11614]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11615]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11616]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11617]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11616]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11618]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11618]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11619]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11619]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11620]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11620]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11621]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11617]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11622]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11621]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11623]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11622]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11624]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11623]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11625]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11624]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11626]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11625]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11627]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11627]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11628]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11626]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11629]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11628]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11630]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11629]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11631]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11630]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11632]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11631]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11633]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11632]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11634]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11633]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11635]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11634]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11635]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11636]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11637]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11636]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11638]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11637]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11639]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11638]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11639]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11640]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11641]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11640]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11642]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11641]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11643]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11642]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11643]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11644]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11645]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11644]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11646]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11645]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11647]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11646]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11648]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11648]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11649]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11649]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11650]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11650]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11651]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11647]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11651]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11652]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11653]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11652]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11654]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11653]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11655]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11654]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11656]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11655]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11657]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11656]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11658]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11657]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11659]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11658]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11660]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11659]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11661]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11660]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11662]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11661]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11663]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11662]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11664]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11663]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11665]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11664]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11666]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11665]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11667]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11667]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11668]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11666]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11669]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11668]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11670]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11669]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11671]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11670]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11671]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11672]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11673]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11672]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11674]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11673]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11675]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11674]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11676]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11676]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11677]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11677]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11678]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11678]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11679]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11675]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11680]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11679]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11681]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11680]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11682]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11681]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11683]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11682]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11684]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11683]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11685]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11684]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11686]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11685]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11687]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11686]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11688]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11687]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11689]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11688]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11690]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11689]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11691]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11690]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11692]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11692]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11693]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11691]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11694]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11693]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11695]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11694]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11696]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11696]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11695]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11697]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11698]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11697]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11699]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11698]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11700]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11699]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11700]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11701]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11702]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11701]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11703]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11702]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11704]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11703]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11705]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11705]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11706]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11706]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11707]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11707]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11708]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11704]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11709]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11708]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11710]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11709]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11711]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11710]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11712]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11711]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11713]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11712]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11713]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11714]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11715]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11714]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11716]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11716]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11717]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11715]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11718]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11717]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11719]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11718]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11720]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11719]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11721]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11720]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11722]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11721]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11723]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11722]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11723]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11724]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11725]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11724]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11726]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11725]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11727]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11726]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11728]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11727]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11729]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11728]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11730]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11729]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11731]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11730]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11732]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11731]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11733]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11732]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11734]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11733]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11735]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11735]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11736]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11736]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11737]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11737]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11738]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11734]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11739]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11738]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11740]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11740]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11741]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11739]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11742]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11741]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11743]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11742]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11744]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11743]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11745]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11744]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11746]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11745]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11747]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11746]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11748]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11747]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11749]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11748]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11750]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11749]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11751]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11750]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11752]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11751]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11752]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11753]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11754]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11753]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11755]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11754]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11756]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11755]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11757]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11756]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11758]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11757]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11759]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11758]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11760]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11759]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11761]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11760]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11761]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11762]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11763]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11762]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11764]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11763]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11765]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11764]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11766]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11765]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11767]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11766]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11768]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11767]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11769]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11768]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11769]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11770]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11771]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11770]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11772]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11771]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11773]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11772]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11773]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11774]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11775]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11774]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11776]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11775]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11777]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11776]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11777]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11778]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11779]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11778]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11780]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11780]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11779]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11781]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11782]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11781]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11783]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11782]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11784]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11783]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11785]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11784]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11785]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11786]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11787]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11786]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11788]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11787]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11789]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11788]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11790]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11789]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11791]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11790]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11792]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11791]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11793]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11792]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11793]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11794]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11795]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11794]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11796]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11795]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11797]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11796]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11797]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11798]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11799]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11798]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11800]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11799]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11801]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11800]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11801]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11802]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11803]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11802]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11804]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11803]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11805]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11804]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11805]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11806]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11807]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11806]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11808]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11807]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11809]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11808]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11810]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11809]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11811]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11810]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11812]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11811]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11813]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11812]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11814]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11814]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11815]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11813]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11816]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11815]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11817]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11816]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11818]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11817]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11819]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11818]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11820]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11819]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11821]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11820]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11822]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11821]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11823]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11822]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11824]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11823]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11825]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11824]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11826]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11825]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11827]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11826]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11828]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11827]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11829]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11828]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11830]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11829]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11831]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11830]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11832]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11831]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11833]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11832]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11834]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11833]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11835]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11834]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11836]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11835]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11837]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11836]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11837]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11838]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11839]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11839]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11840]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11838]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11841]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11840]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11842]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11842]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11843]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11843]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11844]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11844]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11845]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11841]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11846]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11845]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11847]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11846]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11848]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11847]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11849]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11848]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11850]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11849]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11851]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11850]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11852]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11851]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11853]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11852]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11854]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11853]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11855]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11854]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11856]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11855]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11857]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11856]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11858]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11857]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11859]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11858]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11860]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11859]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11861]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11860]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11862]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11861]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11863]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11863]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11864]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11862]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11865]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11864]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11866]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11865]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11867]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11866]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11867]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11868]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11869]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11868]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11870]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11869]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11871]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11870]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11872]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11872]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11873]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11873]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11874]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11874]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11875]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11871]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11875]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11876]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11877]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11876]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11878]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11877]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11879]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11878]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11880]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11879]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11881]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11880]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11882]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11881]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11883]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11882]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11884]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11883]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11884]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11886]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11885]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11886]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11887]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11885]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11888]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11887]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11889]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11888]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11889]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11890]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11891]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11890]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11892]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11891]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11893]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11892]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11894]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11893]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11894]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11895]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11896]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11895]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11897]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11896]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11898]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11897]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11899]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11898]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11900]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11899]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11901]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11901]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11902]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11902]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11903]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11903]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11904]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11900]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11905]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11904]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11906]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11905]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11907]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11906]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11908]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11908]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11909]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11907]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11910]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11909]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11911]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11910]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11912]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11911]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11913]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11912]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11914]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11913]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11915]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11914]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11916]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11915]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11916]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11917]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11918]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11917]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11919]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11918]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11920]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11919]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11921]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11920]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11922]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11921]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11923]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11922]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11924]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11923]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11925]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11924]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11926]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11925]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11927]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11926]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11928]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11927]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11929]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11928]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11930]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11929]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11931]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11931]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11932]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11932]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11933]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11933]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11934]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11930]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11935]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11934]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11936]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11935]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11937]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11936]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11938]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11937]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11939]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11938]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11940]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11939]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11941]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11940]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11942]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11941]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11943]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11942]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11944]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11943]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11945]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11944]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11945]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11946]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11947]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11946]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11948]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11947]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11949]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11948]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11949]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11951]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11950]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11951]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11952]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11952]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11953]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11950]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11954]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11953]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11955]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11954]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11956]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11956]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11957]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11957]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11958]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11955]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11959]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11958]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11960]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11959]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11961]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11960]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11961]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11962]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11963]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11962]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11964]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11963]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11965]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11964]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11966]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11965]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11967]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11966]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11968]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11967]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11969]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11968]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11969]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11970]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11971]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11970]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11972]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11971]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11973]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11972]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11973]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11974]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 11975]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11974]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11976]]} + {:process 4 :type :fail :f :txn :value [[:append 1 11975]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11977]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11976]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11978]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11977]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 11979]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11978]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11980]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11980]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 11981]]} + {:process 4 :type :fail :f :txn :value [[:append 6 11979]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11982]]} + {:process 2 :type :fail :f :txn :value [[:append 5 11981]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11983]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11982]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 11984]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11983]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 11985]]} + {:process 2 :type :fail :f :txn :value [[:append 6 11985]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11986]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11986]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 11987]]} + {:process 2 :type :fail :f :txn :value [[:append 3 11987]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11988]]} + {:process 4 :type :fail :f :txn :value [[:append 3 11984]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11989]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11988]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11989]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 11990]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 11991]]} + {:process 2 :type :fail :f :txn :value [[:append 4 11990]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 11992]]} + {:process 4 :type :fail :f :txn :value [[:append 0 11991]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 11993]]} + {:process 2 :type :fail :f :txn :value [[:append 7 11992]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 11993]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 11994]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 11995]]} + {:process 2 :type :fail :f :txn :value [[:append 1 11994]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 11996]]} + {:process 4 :type :fail :f :txn :value [[:append 5 11995]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 11997]]} + {:process 2 :type :fail :f :txn :value [[:append 0 11996]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 11997]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 11998]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 11999]]} + {:process 2 :type :fail :f :txn :value [[:append 2 11998]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12000]]} + {:process 4 :type :fail :f :txn :value [[:append 2 11999]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12001]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12000]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12002]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12002]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12003]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12001]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12004]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12003]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12005]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12004]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12006]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12005]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12007]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12006]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12008]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12007]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12008]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12009]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12010]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12009]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12011]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12010]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12012]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12011]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12013]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12012]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12014]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12014]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12015]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12015]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12016]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12016]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12017]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12013]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12017]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12018]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12019]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12018]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12020]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12019]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12021]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12020]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12022]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12021]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12023]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12022]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12024]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12023]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12025]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12024]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12026]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12025]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12027]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12027]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12028]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12026]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12029]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12029]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12030]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12028]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12030]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12031]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12032]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12031]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12033]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12032]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12034]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12033]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12035]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12034]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12036]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12035]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12037]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12036]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12038]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12037]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12039]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12038]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12040]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12039]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12041]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12040]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12042]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12041]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12043]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12043]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12044]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12044]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12045]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12045]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12046]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12042]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12047]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12046]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12048]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12047]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12049]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12048]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12050]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12050]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12051]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12049]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12052]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12051]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12053]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12052]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12054]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12053]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12055]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12054]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12056]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12055]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12057]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12056]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12058]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12057]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12058]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12060]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12059]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12060]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12061]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12059]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12062]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12061]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12063]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12062]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12063]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12065]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12064]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12065]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12066]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12064]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12067]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12066]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12068]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12067]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12069]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12068]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12070]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12069]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12071]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12071]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12072]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12072]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12073]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12073]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12074]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12070]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12074]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12075]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12076]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12075]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12077]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12076]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12078]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12077]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12079]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12078]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12080]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12079]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12081]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12080]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12082]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12081]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12083]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12082]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12084]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12083]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12085]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12084]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12086]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12085]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12087]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12086]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12088]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12087]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12089]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12088]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12090]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12089]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12091]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12090]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12092]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12091]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12093]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12092]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12094]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12093]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12095]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12094]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12096]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12096]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12097]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12095]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12098]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12098]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12099]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12099]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12100]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12097]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12101]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12100]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12102]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12101]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12103]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12102]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12104]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12103]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12105]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12104]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12106]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12105]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12107]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12106]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12107]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12108]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12109]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12108]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12110]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12109]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12111]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12110]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12111]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12112]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12113]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12112]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12114]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12113]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12115]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12114]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12115]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12116]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12117]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12116]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12118]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12117]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12119]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12118]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12119]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12120]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12121]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12120]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12122]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12122]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12123]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12121]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12124]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12123]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12125]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12124]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12126]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12125]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12127]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12127]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12128]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12128]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12129]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12129]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12130]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12126]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12131]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12130]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12132]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12131]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12133]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12132]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12134]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12133]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12135]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12134]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12136]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12135]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12137]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12136]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12138]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12137]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12139]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12138]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12139]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12140]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12141]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12140]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12142]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12141]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12143]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12142]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12144]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12144]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12145]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12143]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12145]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12146]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12147]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12146]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12148]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12147]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12149]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12148]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12150]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12149]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12151]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12150]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12152]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12151]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12153]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12152]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12154]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12153]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12155]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12154]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12156]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12155]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12157]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12157]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12158]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12158]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12159]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12159]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12160]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12156]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12161]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12160]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12162]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12161]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12163]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12162]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12164]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12163]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12165]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12164]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12166]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12166]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12167]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12165]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12168]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12167]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12169]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12168]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12170]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12169]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12170]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12171]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12172]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12171]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12173]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12172]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12174]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12173]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12175]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12174]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12176]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12175]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12177]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12176]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12178]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12178]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12179]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12177]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12180]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12179]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12181]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12180]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12182]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12181]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12183]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12182]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12183]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12184]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12185]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12184]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12186]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12186]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12187]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12187]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12188]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12188]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12189]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12189]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12190]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12185]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12191]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12191]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12192]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12190]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12193]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12192]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12194]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12193]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12195]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12194]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12196]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12195]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12197]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12196]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12198]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12197]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12199]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12198]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12200]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12199]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12201]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12200]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12202]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12201]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12203]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12202]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12204]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12203]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12205]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12204]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12206]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12205]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12207]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12206]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12208]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12207]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12209]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12208]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12210]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12209]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12211]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12210]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12212]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12211]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12213]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12212]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12214]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12213]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12215]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12215]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12216]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12216]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12217]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12217]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12218]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12214]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12219]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12218]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12220]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12219]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12221]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12220]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12221]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12222]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12223]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12222]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12224]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12223]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12225]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12224]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12225]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12226]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12227]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12226]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12228]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12227]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12229]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12228]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12229]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12230]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12231]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12230]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12232]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12231]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12233]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12232]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12234]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12233]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12235]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12234]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12236]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12236]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12237]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12235]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12238]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12237]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12239]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12238]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12240]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12239]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12241]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12240]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12242]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12241]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12243]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12243]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12244]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12244]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12245]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12245]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12242]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12246]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12247]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12246]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12248]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12247]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12249]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12248]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12249]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12250]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12251]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12250]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12252]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12251]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12253]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12252]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12253]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12254]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12255]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12254]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12256]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12256]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12257]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12257]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12258]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12255]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12259]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12258]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12260]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12259]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12261]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12260]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12262]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12261]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12263]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12262]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12264]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12263]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12265]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12264]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12266]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12265]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12267]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12266]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12267]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12268]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12269]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12268]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12270]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12269]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12271]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12270]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12271]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12272]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12273]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12272]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12274]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12274]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12275]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12275]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12276]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12276]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12277]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12273]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12278]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12278]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12279]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12277]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12280]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12279]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12281]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12280]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12281]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12282]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12283]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12282]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12284]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12283]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12285]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12284]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12285]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12286]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12287]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12286]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12288]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12287]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12289]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12288]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12289]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12290]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12291]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12290]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12292]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12291]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12293]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12292]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12294]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12293]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12295]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12294]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12296]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12295]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12297]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12296]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12297]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12298]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12299]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12298]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12300]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12299]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12301]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12300]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12302]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12302]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12303]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12303]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12304]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12301]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12304]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12305]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12306]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12305]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12307]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12306]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12308]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12307]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12309]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12308]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12310]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12309]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12311]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12310]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12312]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12311]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12313]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12312]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12314]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12313]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12315]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12314]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12316]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12315]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12317]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12316]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12318]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12317]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12319]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12318]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12320]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12319]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12321]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12320]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12322]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12321]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12323]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12322]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12324]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12323]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12325]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12324]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12326]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12325]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12327]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12326]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12328]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12327]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12329]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12329]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12330]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12328]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12331]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12330]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12332]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12332]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12333]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12333]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12334]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12334]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12335]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12335]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12336]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12331]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12337]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12336]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12338]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12337]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12339]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12338]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12340]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12339]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12341]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12340]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12342]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12341]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12343]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12342]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12344]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12343]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12345]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12344]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12345]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12346]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12347]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12346]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12348]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12347]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12349]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12348]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12349]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12350]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12350]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12351]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12352]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12351]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12353]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12352]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12354]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12353]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12355]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12354]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12356]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12355]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12357]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12356]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12358]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12357]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12359]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12358]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12360]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12359]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12361]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12361]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12362]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12362]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12363]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12360]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12364]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12363]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12365]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12364]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12366]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12365]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12367]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12366]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12368]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12367]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12369]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12368]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12370]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12369]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12371]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12370]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12372]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12371]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12373]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12372]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12374]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12373]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12375]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12375]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12376]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12374]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12377]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12376]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12378]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12377]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12379]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12378]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12379]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12380]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12381]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12380]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12382]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12381]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12383]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12382]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12384]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12383]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12385]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12384]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12386]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12385]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12387]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12386]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12388]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12388]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12389]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12389]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12390]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12390]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12391]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12387]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12391]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12392]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12393]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12392]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12394]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12393]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12395]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12394]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12396]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12395]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12397]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12396]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12398]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12398]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12399]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12399]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12400]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12397]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12401]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12401]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12400]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12402]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12403]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12403]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12404]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12402]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12405]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12404]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12406]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12406]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12407]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12407]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12405]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12408]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12408]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12410]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12409]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12410]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12411]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12409]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12412]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12412]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12413]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12413]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12414]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12414]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12415]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12411]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12416]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12415]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12417]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12416]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12417]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12418]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12419]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12418]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12420]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12419]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12421]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12420]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12422]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12421]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12423]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12422]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12424]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12423]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12425]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12425]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12426]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12424]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12426]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12427]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12428]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12427]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12429]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12428]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12430]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12429]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12431]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12430]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12432]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12431]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12433]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12432]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12433]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12434]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12435]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12434]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12436]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12435]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12437]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12436]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12437]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12438]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12439]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12438]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12440]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12439]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12441]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12440]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12442]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12442]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12443]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12443]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12444]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12444]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12445]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12441]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12446]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12446]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12447]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12445]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12448]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12447]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12449]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12448]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12450]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12449]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12451]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12450]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12452]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12451]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12453]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12452]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12454]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12453]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12455]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12454]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12456]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12455]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12457]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12456]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12458]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12457]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12459]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12458]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12459]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12460]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12461]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12460]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12462]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12461]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12463]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12462]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12463]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12464]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12465]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12464]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12466]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12465]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12467]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12466]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12468]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12467]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12469]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12469]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12470]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12470]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12471]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12471]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12472]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12472]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12473]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12468]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12474]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12473]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12475]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12474]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12476]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12475]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12477]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12476]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12478]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12477]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12479]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12478]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12480]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12479]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12481]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12480]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12482]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12481]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12483]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12482]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12484]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12483]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12485]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12484]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12486]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12485]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12487]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12486]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12488]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12487]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12489]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12488]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12490]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12489]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12491]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12490]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12492]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12491]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12493]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12492]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12494]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12493]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12495]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12494]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12496]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12496]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12497]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12495]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12498]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12498]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12499]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12499]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12500]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12497]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12501]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12500]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12502]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12501]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12503]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12502]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12503]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12504]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12505]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12504]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12506]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12505]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12507]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12506]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12507]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12508]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12509]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12508]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12510]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12509]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12511]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12510]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12512]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12511]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12513]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12512]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12514]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12513]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12515]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12514]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12516]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12515]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12517]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12516]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12518]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12517]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12519]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12518]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12520]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12519]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12521]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12520]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12522]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12522]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12523]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12521]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12524]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12523]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12525]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12525]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12526]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12526]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12527]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12527]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12524]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12528]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12529]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12528]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12530]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12529]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12531]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12530]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12532]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12531]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12533]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12532]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12534]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12533]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12535]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12534]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12536]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12535]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12537]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12536]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12538]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12537]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12539]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12538]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12539]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12540]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12541]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12540]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12542]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12541]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12543]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12542]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12544]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12544]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12545]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12543]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12546]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12546]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12547]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12545]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12547]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12548]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12549]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12548]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12550]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12549]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12551]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12550]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12551]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12552]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12553]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12552]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12554]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12554]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12555]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12555]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12556]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12556]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12553]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12557]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12558]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12557]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12559]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12558]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12560]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12559]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12561]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12560]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12562]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12561]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12563]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12562]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12564]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12563]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12565]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12564]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12566]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12566]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12567]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12565]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12568]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12567]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12569]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12568]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12569]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12570]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12571]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12570]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12572]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12571]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12573]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12572]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12573]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12574]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12575]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12574]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12576]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12576]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12575]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12577]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12578]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12578]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12579]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12577]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12580]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12579]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12581]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12580]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12582]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12581]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12583]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12583]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12584]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12584]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12585]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12585]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12586]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12582]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12587]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12586]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12588]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12588]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12589]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12587]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12590]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12589]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12591]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12590]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12592]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12591]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12593]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12592]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12594]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12593]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12595]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12594]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12596]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12595]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12596]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12597]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12598]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12597]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12599]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12598]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12600]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12599]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12601]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12600]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12602]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12601]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12603]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12602]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12604]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12603]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12605]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12604]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12606]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12605]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12607]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12606]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12608]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12607]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12609]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12608]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12610]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12609]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12611]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12610]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12612]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12611]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12613]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12613]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12614]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12614]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12615]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12612]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12616]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12615]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12617]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12616]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12618]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12617]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12619]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12618]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12620]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12619]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12621]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12620]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12622]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12621]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12623]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12622]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12624]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12623]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12625]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12624]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12626]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12625]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12627]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12626]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12628]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12627]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12629]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12628]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12630]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12629]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12631]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12630]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12632]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12631]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12633]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12632]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12634]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12634]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12635]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12635]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12636]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12633]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12636]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12637]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12638]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12638]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12639]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12639]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12640]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12637]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12641]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12640]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12642]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12641]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12643]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12642]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12643]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12644]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12645]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12644]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12646]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12645]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12647]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12646]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12647]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12648]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12649]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12648]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12650]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12649]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12651]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12650]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12651]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12652]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12653]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12652]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12654]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12653]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12655]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12654]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12655]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12656]]} + {:process 4 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12657]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12656]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12658]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12657]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12659]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12658]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12659]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12660]]} + {:process 4 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12661]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12660]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12662]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12661]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12663]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12662]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12664]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12664]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12665]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12663]]} + {:process 4 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12665]]} + {:process 4 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12666]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12667]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12666]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12668]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12667]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12669]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12668]]} + {:process 4 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 2 12670]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12669]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12671]]} + {:process 4 :type :fail :f :txn :value [[:append 2 12670]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12672]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12671]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12673]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12672]]} + {:process 4 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 7 12674]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12673]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12675]]} + {:process 4 :type :fail :f :txn :value [[:append 7 12674]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12676]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12675]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12677]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12676]]} + {:process 4 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 4 12678]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12677]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12679]]} + {:process 4 :type :fail :f :txn :value [[:append 4 12678]]} + {:process 4 :type :invoke :f :txn :value [[:append 3 12680]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12679]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12681]]} + {:process 4 :type :fail :f :txn :value [[:append 3 12680]]} + {:process 4 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 1 12682]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12681]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12683]]} + {:process 4 :type :fail :f :txn :value [[:append 1 12682]]} + {:process 4 :type :invoke :f :txn :value [[:append 0 12684]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12683]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12685]]} + {:process 4 :type :fail :f :txn :value [[:append 0 12684]]} + {:process 4 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 4 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 4 :type :invoke :f :txn :value [[:append 6 12686]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12685]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12687]]} + {:process 4 :type :fail :f :txn :value [[:append 6 12686]]} + {:process 4 :type :invoke :f :txn :value [[:append 5 12688]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12687]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12689]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12689]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12690]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12690]]} + {:process 4 :type :fail :f :txn :value [[:append 5 12688]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12691]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12691]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12692]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12692]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12693]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12693]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12694]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12694]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12695]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12695]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12696]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12696]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12697]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12697]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12698]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12698]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12699]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12699]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12700]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12700]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12701]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12701]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12702]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12702]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12703]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12703]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12704]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12704]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12705]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12705]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12706]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12706]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12707]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12707]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12708]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12708]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12709]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12709]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12710]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12710]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12711]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12711]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12712]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12712]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12713]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12713]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12714]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12714]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12715]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12715]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12716]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12716]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12717]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12717]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12718]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12718]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12719]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12719]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12720]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12720]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12721]]} + {:process 3 :type :fail :f :txn :value [[:append 3 1661]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 12722]]} + {:process 3 :type :fail :f :txn :value [[:append 1 12722]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 12723]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12721]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 12723]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12724]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 12725]]} + {:process 3 :type :fail :f :txn :value [[:append 6 12725]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 12726]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12724]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12727]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12727]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12728]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12728]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12729]]} + {:process 3 :type :fail :f :txn :value [[:append 5 12726]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 12730]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12729]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 12730]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 12731]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12732]]} + {:process 3 :type :fail :f :txn :value [[:append 2 12731]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12732]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 12733]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12734]]} + {:process 3 :type :fail :f :txn :value [[:append 0 12733]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 12735]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12734]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 12735]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12736]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 12737]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12736]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12738]]} + {:process 3 :type :fail :f :txn :value [[:append 5 12737]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 12739]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12738]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 12739]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12740]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 12741]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12740]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12742]]} + {:process 3 :type :fail :f :txn :value [[:append 2 12741]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 12743]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12742]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 12743]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12744]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 12745]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12744]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12746]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12746]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12747]]} + {:process 3 :type :fail :f :txn :value [[:append 7 12745]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 12748]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12747]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12749]]} + {:process 3 :type :fail :f :txn :value [[:append 6 12748]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12749]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 12750]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12751]]} + {:process 3 :type :fail :f :txn :value [[:append 4 12750]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 12752]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12751]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12753]]} + {:process 3 :type :fail :f :txn :value [[:append 3 12752]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 12754]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12753]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12755]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12755]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12756]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12756]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12757]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12757]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12758]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12758]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 12754]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12759]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 12760]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12759]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12761]]} + {:process 3 :type :fail :f :txn :value [[:append 0 12760]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 12762]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12761]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12763]]} + {:process 3 :type :fail :f :txn :value [[:append 6 12762]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 12764]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12763]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12765]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12765]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12766]]} + {:process 3 :type :fail :f :txn :value [[:append 5 12764]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 12767]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12766]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12768]]} + {:process 3 :type :fail :f :txn :value [[:append 3 12767]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 12769]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12768]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 12769]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12770]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 12771]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12770]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12772]]} + {:process 3 :type :fail :f :txn :value [[:append 0 12771]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 12773]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12772]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 12773]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12774]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 12775]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12774]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12776]]} + {:process 3 :type :fail :f :txn :value [[:append 5 12775]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 12777]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12776]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 12777]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12778]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 12779]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12778]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12780]]} + {:process 3 :type :fail :f :txn :value [[:append 2 12779]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 12781]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12780]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 12781]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12782]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 12783]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12782]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12784]]} + {:process 3 :type :fail :f :txn :value [[:append 7 12783]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 12785]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12784]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12786]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12786]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12787]]} + {:process 3 :type :fail :f :txn :value [[:append 6 12785]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12787]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 12788]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12789]]} + {:process 3 :type :fail :f :txn :value [[:append 4 12788]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 12790]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12789]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12791]]} + {:process 3 :type :fail :f :txn :value [[:append 3 12790]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 12792]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12791]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12793]]} + {:process 3 :type :fail :f :txn :value [[:append 1 12792]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 12794]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12793]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12795]]} + {:process 3 :type :fail :f :txn :value [[:append 0 12794]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 12796]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12795]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12797]]} + {:process 3 :type :fail :f :txn :value [[:append 6 12796]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 12798]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12797]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12799]]} + {:process 3 :type :fail :f :txn :value [[:append 5 12798]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 12800]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12799]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12801]]} + {:process 3 :type :fail :f :txn :value [[:append 3 12800]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 12802]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12801]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12803]]} + {:process 3 :type :fail :f :txn :value [[:append 2 12802]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 12804]]} + {:process 3 :type :fail :f :txn :value [[:append 0 12804]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 12805]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12803]]} + {:process 3 :type :fail :f :txn :value [[:append 7 12805]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 12806]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12807]]} + {:process 3 :type :fail :f :txn :value [[:append 5 12806]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 12808]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12807]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12809]]} + {:process 3 :type :fail :f :txn :value [[:append 4 12808]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 12810]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12809]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12811]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12811]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12812]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12812]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12813]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12813]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12814]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12814]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12815]]} + {:process 3 :type :fail :f :txn :value [[:append 2 12810]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 12816]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12815]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12817]]} + {:process 3 :type :fail :f :txn :value [[:append 1 12816]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12817]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 12818]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12819]]} + {:process 3 :type :fail :f :txn :value [[:append 7 12818]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 12820]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12819]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12821]]} + {:process 3 :type :fail :f :txn :value [[:append 6 12820]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 12822]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12821]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12823]]} + {:process 3 :type :fail :f :txn :value [[:append 4 12822]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 12824]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12823]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12825]]} + {:process 3 :type :fail :f :txn :value [[:append 3 12824]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 12826]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12825]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12827]]} + {:process 3 :type :fail :f :txn :value [[:append 1 12826]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 12828]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12827]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12829]]} + {:process 3 :type :fail :f :txn :value [[:append 0 12828]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 12830]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12829]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12831]]} + {:process 3 :type :fail :f :txn :value [[:append 6 12830]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 12832]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12831]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12833]]} + {:process 3 :type :fail :f :txn :value [[:append 5 12832]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 12834]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12833]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12835]]} + {:process 3 :type :fail :f :txn :value [[:append 3 12834]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 12836]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12835]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12837]]} + {:process 3 :type :fail :f :txn :value [[:append 2 12836]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 12838]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12837]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12839]]} + {:process 3 :type :fail :f :txn :value [[:append 0 12838]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 12840]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12839]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12841]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12841]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12842]]} + {:process 3 :type :fail :f :txn :value [[:append 7 12840]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 12843]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12842]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12844]]} + {:process 3 :type :fail :f :txn :value [[:append 5 12843]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 12845]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12844]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 12845]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12846]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 12847]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12846]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12848]]} + {:process 3 :type :fail :f :txn :value [[:append 2 12847]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 12849]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12848]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12850]]} + {:process 3 :type :fail :f :txn :value [[:append 1 12849]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 12851]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12850]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12852]]} + {:process 3 :type :fail :f :txn :value [[:append 7 12851]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 12853]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12852]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12854]]} + {:process 3 :type :fail :f :txn :value [[:append 6 12853]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 12855]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12854]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12856]]} + {:process 3 :type :fail :f :txn :value [[:append 4 12855]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 12857]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12856]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 12857]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12858]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 12859]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12858]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12860]]} + {:process 3 :type :fail :f :txn :value [[:append 1 12859]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12860]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 12861]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12862]]} + {:process 3 :type :fail :f :txn :value [[:append 0 12861]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 12863]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12862]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12864]]} + {:process 3 :type :fail :f :txn :value [[:append 6 12863]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 12865]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12864]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12866]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12866]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12867]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12867]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12868]]} + {:process 3 :type :fail :f :txn :value [[:append 5 12865]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12868]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 12869]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12870]]} + {:process 3 :type :fail :f :txn :value [[:append 3 12869]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 12871]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12870]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 12871]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12872]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 12873]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12872]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12874]]} + {:process 3 :type :fail :f :txn :value [[:append 0 12873]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 12875]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12874]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12876]]} + {:process 3 :type :fail :f :txn :value [[:append 7 12875]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 12877]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12876]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12878]]} + {:process 3 :type :fail :f :txn :value [[:append 5 12877]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 12879]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12878]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 12879]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12880]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 12881]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12880]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12882]]} + {:process 3 :type :fail :f :txn :value [[:append 2 12881]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 12883]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12882]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12884]]} + {:process 3 :type :fail :f :txn :value [[:append 1 12883]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 12885]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12884]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12886]]} + {:process 3 :type :fail :f :txn :value [[:append 7 12885]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 12887]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12886]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 12887]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12888]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 12889]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12888]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12890]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12890]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12891]]} + {:process 3 :type :fail :f :txn :value [[:append 4 12889]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 12892]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12891]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12893]]} + {:process 3 :type :fail :f :txn :value [[:append 3 12892]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 12894]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12893]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12895]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12895]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12896]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12896]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12897]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12897]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12898]]} + {:process 3 :type :fail :f :txn :value [[:append 1 12894]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 12899]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12898]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12900]]} + {:process 3 :type :fail :f :txn :value [[:append 0 12899]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 12901]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12900]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12902]]} + {:process 3 :type :fail :f :txn :value [[:append 6 12901]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 12903]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12902]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 12903]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12904]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 12905]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12904]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12906]]} + {:process 3 :type :fail :f :txn :value [[:append 3 12905]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 12907]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12906]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12908]]} + {:process 3 :type :fail :f :txn :value [[:append 2 12907]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 12909]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12908]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12910]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12910]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12911]]} + {:process 3 :type :fail :f :txn :value [[:append 0 12909]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 12912]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12911]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12913]]} + {:process 3 :type :fail :f :txn :value [[:append 7 12912]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 12914]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12913]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12915]]} + {:process 3 :type :fail :f :txn :value [[:append 5 12914]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 12916]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12915]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12917]]} + {:process 3 :type :fail :f :txn :value [[:append 4 12916]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 12918]]} + {:process 3 :type :fail :f :txn :value [[:append 2 12918]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 12919]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12917]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12920]]} + {:process 3 :type :fail :f :txn :value [[:append 1 12919]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 12921]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12920]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12922]]} + {:process 3 :type :fail :f :txn :value [[:append 7 12921]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 12923]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12922]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12924]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12924]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12925]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12925]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12926]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12926]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12927]]} + {:process 3 :type :fail :f :txn :value [[:append 6 12923]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12927]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 12928]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12929]]} + {:process 3 :type :fail :f :txn :value [[:append 4 12928]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 12930]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12929]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12931]]} + {:process 3 :type :fail :f :txn :value [[:append 3 12930]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 12932]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12931]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12933]]} + {:process 3 :type :fail :f :txn :value [[:append 1 12932]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 12934]]} + {:process 3 :type :fail :f :txn :value [[:append 0 12934]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 12935]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12933]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12936]]} + {:process 3 :type :fail :f :txn :value [[:append 6 12935]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 12937]]} + {:process 3 :type :fail :f :txn :value [[:append 5 12937]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 12938]]} + {:process 3 :type :fail :f :txn :value [[:append 3 12938]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 12939]]} + {:process 3 :type :fail :f :txn :value [[:append 2 12939]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 12940]]} + {:process 3 :type :fail :f :txn :value [[:append 0 12940]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 12941]]} + {:process 3 :type :fail :f :txn :value [[:append 7 12941]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 12942]]} + {:process 3 :type :fail :f :txn :value [[:append 5 12942]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 12943]]} + {:process 3 :type :fail :f :txn :value [[:append 4 12943]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 12944]]} + {:process 3 :type :fail :f :txn :value [[:append 2 12944]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 12945]]} + {:process 3 :type :fail :f :txn :value [[:append 1 12945]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 12946]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12936]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 12946]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 12947]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12948]]} + {:process 3 :type :fail :f :txn :value [[:append 6 12947]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 12949]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12948]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12950]]} + {:process 3 :type :fail :f :txn :value [[:append 4 12949]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 12951]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12950]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 12951]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12952]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 12953]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12952]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12954]]} + {:process 3 :type :fail :f :txn :value [[:append 1 12953]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 12955]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12954]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 12955]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12956]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 12957]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12956]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12958]]} + {:process 3 :type :fail :f :txn :value [[:append 6 12957]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 12959]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12958]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 12959]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12960]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 12961]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12960]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12962]]} + {:process 3 :type :fail :f :txn :value [[:append 3 12961]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 12963]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12962]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 12963]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12964]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 12965]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12964]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12966]]} + {:process 3 :type :fail :f :txn :value [[:append 0 12965]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 12967]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12966]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12968]]} + {:process 3 :type :fail :f :txn :value [[:append 7 12967]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 12969]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12968]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12970]]} + {:process 3 :type :fail :f :txn :value [[:append 5 12969]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 12971]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12970]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 12971]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 12972]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12973]]} + {:process 3 :type :fail :f :txn :value [[:append 2 12972]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 12974]]} + {:process 3 :type :fail :f :txn :value [[:append 1 12974]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 12975]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12973]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12976]]} + {:process 3 :type :fail :f :txn :value [[:append 7 12975]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 12977]]} + {:process 3 :type :fail :f :txn :value [[:append 6 12977]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 12978]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12976]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12979]]} + {:process 3 :type :fail :f :txn :value [[:append 4 12978]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 12980]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12979]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12981]]} + {:process 3 :type :fail :f :txn :value [[:append 3 12980]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 12982]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12981]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 12983]]} + {:process 3 :type :fail :f :txn :value [[:append 1 12982]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 12984]]} + {:process 2 :type :fail :f :txn :value [[:append 1 12983]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12985]]} + {:process 3 :type :fail :f :txn :value [[:append 0 12984]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 12986]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12985]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 12987]]} + {:process 3 :type :fail :f :txn :value [[:append 6 12986]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 12988]]} + {:process 2 :type :fail :f :txn :value [[:append 2 12987]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12989]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12989]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 12990]]} + {:process 2 :type :fail :f :txn :value [[:append 7 12990]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12991]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12991]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 12988]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 12992]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 12993]]} + {:process 2 :type :fail :f :txn :value [[:append 0 12992]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 12994]]} + {:process 2 :type :fail :f :txn :value [[:append 3 12994]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 12995]]} + {:process 3 :type :fail :f :txn :value [[:append 3 12993]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 12996]]} + {:process 2 :type :fail :f :txn :value [[:append 5 12995]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 12997]]} + {:process 3 :type :fail :f :txn :value [[:append 2 12996]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 12998]]} + {:process 2 :type :fail :f :txn :value [[:append 4 12997]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 12999]]} + {:process 3 :type :fail :f :txn :value [[:append 0 12998]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13000]]} + {:process 2 :type :fail :f :txn :value [[:append 6 12999]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13001]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13000]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13002]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13001]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13003]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13002]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13004]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13003]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13005]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13004]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13006]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13005]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13007]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13006]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13008]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13007]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13009]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13008]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13009]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13010]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13011]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13010]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13012]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13011]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13013]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13012]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13014]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13013]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13015]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13014]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13016]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13015]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13017]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13016]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13018]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13017]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13019]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13019]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13020]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13018]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13021]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13020]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13021]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13022]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13023]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13022]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13024]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13023]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13025]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13024]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13025]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13026]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13027]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13026]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13028]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13027]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13029]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13028]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13029]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13030]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13031]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13031]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13032]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13030]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13033]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13032]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13034]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13033]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13035]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13034]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13036]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13035]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13037]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13036]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13038]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13037]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13039]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13038]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13040]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13039]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13041]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13040]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13042]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13041]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13043]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13042]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13044]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13043]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13045]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13045]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13046]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13046]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13047]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13044]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13048]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13047]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13049]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13048]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13050]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13050]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13051]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13049]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13052]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13051]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13053]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13052]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13054]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13053]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13055]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13054]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13056]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13055]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13057]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13056]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13058]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13057]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13059]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13058]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13060]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13059]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13061]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13060]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13061]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13062]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13063]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13062]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13064]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13063]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13065]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13064]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13065]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13066]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13067]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13066]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13068]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13067]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13069]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13069]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13070]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13068]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13071]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13071]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13072]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13070]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13073]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13072]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13074]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13073]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13075]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13074]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13076]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13075]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13077]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13076]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13077]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13078]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13079]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13078]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13080]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13079]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13081]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13080]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13082]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13081]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13083]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13082]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13084]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13083]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13085]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13084]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13085]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13086]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13087]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13086]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13088]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13088]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13089]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13087]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13090]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13089]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13091]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13090]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13092]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13091]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13093]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13092]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13094]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13093]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13095]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13095]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13096]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13094]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13097]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13096]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13098]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13097]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13099]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13098]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13100]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13100]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13101]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13101]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13102]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13102]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13103]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13099]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13103]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13104]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13105]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13104]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13106]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13105]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13107]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13106]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13108]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13107]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13109]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13108]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13110]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13109]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13111]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13110]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13112]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13111]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13113]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13112]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13114]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13113]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13115]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13114]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13116]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13115]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13117]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13116]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13118]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13117]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13119]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13119]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13120]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13118]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13121]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13120]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13122]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13121]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13123]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13122]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13124]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13123]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13125]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13124]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13126]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13125]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13127]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13126]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13128]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13128]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13129]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13129]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13130]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13130]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13131]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13127]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13131]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13132]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13133]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13132]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13134]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13133]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13135]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13134]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13136]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13135]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13137]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13136]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13138]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13137]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13139]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13138]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13140]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13139]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13141]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13141]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13142]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13140]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13143]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13143]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13144]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13142]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13144]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13145]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13146]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13145]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13147]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13146]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13148]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13147]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13149]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13148]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13150]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13149]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13151]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13150]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13152]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13151]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13153]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13152]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13154]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13153]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13155]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13154]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13156]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13156]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13157]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13157]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13158]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13158]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13159]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13155]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13160]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13159]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13161]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13160]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13162]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13161]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13163]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13162]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13164]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13163]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13165]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13165]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13166]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13164]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13167]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13166]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13168]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13167]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13169]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13168]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13169]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13170]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13171]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13170]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13172]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13171]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13173]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13172]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13174]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13173]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13175]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13174]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13176]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13175]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13177]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13176]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13178]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13177]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13179]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13178]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13180]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13179]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13181]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13180]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13182]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13181]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13183]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13182]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13184]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13183]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13185]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13184]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13186]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13186]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13187]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13187]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13188]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13188]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13189]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13189]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13190]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13185]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13190]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13191]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13192]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13191]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13193]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13192]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13194]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13193]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13195]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13194]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13196]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13195]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13197]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13196]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13198]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13197]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13199]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13198]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13200]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13199]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13201]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13200]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13202]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13201]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13202]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13203]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13204]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13203]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13205]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13204]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13206]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13205]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13207]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13206]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13207]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13208]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13209]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13208]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13210]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13210]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13211]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13209]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13212]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13211]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13213]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13212]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13213]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13214]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13215]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13214]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13216]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13216]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13217]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13217]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13218]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13218]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13219]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13215]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13220]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13219]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13221]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13220]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13222]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13221]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13223]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13222]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13224]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13223]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13225]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13224]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13226]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13225]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13227]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13226]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13228]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13227]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13229]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13228]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13230]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13229]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13231]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13230]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13232]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13231]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13233]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13232]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13234]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13233]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13235]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13234]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13236]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13236]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13237]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13235]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13238]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13237]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13239]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13238]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13240]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13239]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13241]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13240]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13242]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13241]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13243]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13242]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13244]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13244]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13245]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13245]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13246]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13243]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13246]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13247]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13248]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13247]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13249]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13248]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13250]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13249]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13251]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13250]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13252]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13251]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13253]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13252]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13253]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13254]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13255]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13254]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13256]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13255]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13257]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13256]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13258]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13257]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13259]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13258]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13260]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13260]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13261]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13259]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13262]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13261]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13263]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13262]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13264]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13263]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13265]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13264]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13266]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13265]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13267]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13266]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13268]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13267]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13269]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13268]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13270]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13269]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13271]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13271]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13272]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13272]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13273]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13273]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13274]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13270]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13275]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13274]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13276]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13275]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13277]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13276]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13277]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13278]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13279]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13278]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13280]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13279]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13281]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13280]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13282]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13282]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13283]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13281]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13283]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13284]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13285]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13284]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13286]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13285]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13287]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13286]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13288]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13287]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13289]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13288]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13290]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13289]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13291]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13290]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13292]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13291]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13293]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13292]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13294]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13293]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13295]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13294]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13296]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13295]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13297]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13296]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13298]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13297]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13299]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13298]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13300]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13299]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13301]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13301]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13302]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13302]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13303]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13303]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13304]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13304]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13305]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13300]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13306]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13305]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13307]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13306]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13308]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13307]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13309]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13308]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13310]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13309]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13311]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13310]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13312]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13311]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13313]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13312]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13314]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13313]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13315]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13314]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13316]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13315]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13316]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13317]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13318]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13317]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13319]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13318]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13320]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13319]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13321]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13320]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13321]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13322]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13323]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13322]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13324]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13323]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13325]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13324]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13325]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13326]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13327]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13326]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13328]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13327]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13329]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13328]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13330]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13330]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13331]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13329]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13332]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13332]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13333]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13331]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13334]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13334]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13335]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13333]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13336]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13335]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13337]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13336]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13338]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13337]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13339]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13338]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13340]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13339]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13341]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13340]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13342]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13341]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13343]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13342]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13344]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13343]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13345]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13344]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13346]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13345]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13347]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13346]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13348]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13347]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13349]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13348]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13350]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13349]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13351]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13350]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13352]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13351]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13353]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13352]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13354]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13353]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13355]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13355]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13354]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13356]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13357]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13356]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13358]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13358]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13359]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13359]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13360]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13360]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13361]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13361]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13362]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13357]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13363]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13362]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13364]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13363]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13365]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13364]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13366]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13365]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13367]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13366]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13367]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13368]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13369]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13368]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13370]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13369]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13371]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13370]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13371]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13373]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13372]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13373]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13374]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13372]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13375]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13374]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13376]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13375]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13377]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13377]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13378]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13376]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13379]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13379]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13380]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13378]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13381]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13380]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13382]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13381]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13383]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13382]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13384]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13383]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13385]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13384]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13386]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13385]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13387]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13387]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13388]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13388]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13389]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13389]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13386]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13390]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13391]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13390]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13392]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13391]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13393]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13392]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13394]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13393]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13395]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13394]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13396]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13395]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13397]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13397]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13398]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13396]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13399]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13398]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13400]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13399]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13401]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13400]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13402]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13401]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13403]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13402]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13404]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13403]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13405]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13404]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13406]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13405]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13407]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13406]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13408]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13407]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13409]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13408]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13410]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13409]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13411]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13410]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13412]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13411]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13413]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13413]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13414]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13414]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13415]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13412]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13416]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13415]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13417]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13416]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13418]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13417]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13419]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13418]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13420]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13419]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13421]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13420]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13422]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13421]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13423]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13423]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13424]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13422]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13425]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13424]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13426]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13425]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13427]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13426]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13428]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13427]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13429]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13429]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13428]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13430]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13431]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13430]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13432]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13431]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13433]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13432]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13434]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13433]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13435]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13434]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13436]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13435]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13437]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13436]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13438]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13437]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13439]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13438]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13440]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13439]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13441]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13441]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13442]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13442]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13443]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13443]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13444]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13440]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13445]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13444]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13446]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13446]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13447]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13445]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13448]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13447]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13449]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13449]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13450]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13448]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13451]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13450]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13452]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13451]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13452]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13453]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13454]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13453]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13455]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13454]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13456]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13455]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13457]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13456]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13458]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13457]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13459]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13458]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13460]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13459]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13461]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13460]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13462]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13461]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13463]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13462]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13463]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13464]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13465]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13464]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13466]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13465]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13467]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13466]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13468]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13467]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13469]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13468]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13470]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13470]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13471]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13469]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13472]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13471]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13473]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13473]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13474]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13474]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13475]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13475]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13476]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13472]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13477]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13476]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13478]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13477]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13479]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13478]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13479]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13480]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13481]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13480]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13482]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13481]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13483]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13482]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13484]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13484]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13485]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13483]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13486]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13486]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13487]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13485]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13488]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13487]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13489]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13488]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13490]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13489]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13491]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13491]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13492]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13490]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13493]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13492]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13494]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13493]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13495]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13494]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13496]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13495]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13497]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13496]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13498]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13497]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13499]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13498]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13500]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13499]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13501]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13501]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13502]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13502]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13503]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13503]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13504]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13500]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13505]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13504]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13506]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13505]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13507]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13506]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13508]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13507]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13509]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13508]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13509]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13510]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13511]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13510]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13512]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13511]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13513]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13512]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13513]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13514]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13515]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13514]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13516]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13516]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13517]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13515]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13518]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13517]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13519]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13518]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13520]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13519]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13521]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13520]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13522]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13521]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13523]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13522]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13524]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13523]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13525]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13524]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13526]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13525]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13527]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13526]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13528]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13527]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13529]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13528]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13530]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13529]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13531]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13531]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13532]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13532]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13533]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13533]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13534]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13530]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13535]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13534]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13536]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13535]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13537]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13537]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13538]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13536]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13539]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13538]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13540]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13539]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13541]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13540]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13542]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13541]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13543]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13543]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13542]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13544]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13545]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13544]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13545]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13546]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13547]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13546]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13548]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13547]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13549]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13548]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13550]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13549]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13551]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13550]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13552]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13551]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13553]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13552]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13553]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13554]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13555]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13554]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13556]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13555]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13557]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13556]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13558]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13558]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13559]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13557]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13560]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13559]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13561]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13560]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13562]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13561]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13563]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13562]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13564]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13563]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13565]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13564]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13566]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13565]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13567]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13566]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13568]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13567]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13569]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13568]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13570]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13569]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13571]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13570]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13572]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13571]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13573]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13572]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13574]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13573]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13575]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13574]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13576]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13575]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13577]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13576]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13578]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13577]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13579]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13578]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13580]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13579]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13581]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13580]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13582]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13581]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13583]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13582]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13584]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13583]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13585]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13584]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13586]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13586]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13587]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13587]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13588]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13585]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13589]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13588]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13590]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13589]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13591]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13590]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13592]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13591]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13593]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13592]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13594]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13593]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13595]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13594]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13596]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13595]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13597]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13596]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13598]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13597]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13599]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13598]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13600]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13599]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13600]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13601]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13602]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13601]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13602]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13603]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13604]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13604]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13605]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13603]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13606]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13605]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13607]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13606]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13608]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13607]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13609]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13609]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13610]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13610]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13611]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13608]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13612]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13611]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13613]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13612]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13614]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13614]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13615]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13613]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13616]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13615]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13617]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13616]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13617]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13618]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13619]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13618]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13620]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13619]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13621]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13620]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13621]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13622]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13623]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13622]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13624]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13623]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13625]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13624]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13626]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13625]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13627]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13626]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13628]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13627]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13629]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13628]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13630]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13629]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13631]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13630]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13632]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13631]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13633]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13632]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13634]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13633]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13635]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13634]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13636]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13636]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13635]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13637]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13638]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13638]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13639]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13637]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13640]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13639]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13641]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13640]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13642]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13641]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13643]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13642]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13644]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13643]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13645]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13644]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13646]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13645]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13647]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13646]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13648]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13647]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13649]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13648]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13650]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13649]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13651]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13650]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13652]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13651]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13653]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13652]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13654]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13653]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13655]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13654]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13656]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13655]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13657]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13656]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13657]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13658]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13659]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13659]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13660]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13658]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13661]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13661]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13662]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13660]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13663]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13663]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13664]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13664]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13665]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13665]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13666]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13662]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13667]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13666]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13668]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13667]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13669]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13668]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13670]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13669]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13671]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13670]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13672]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13671]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13673]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13672]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13674]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13673]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13675]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13674]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13676]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13675]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13677]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13676]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13678]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13677]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13679]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13678]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13680]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13679]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13681]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13680]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13682]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13681]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13683]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13682]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13684]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13684]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13685]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13683]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13686]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13685]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13687]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13686]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13688]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13687]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13689]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13688]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13690]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13689]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13691]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13691]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13692]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13692]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13693]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13693]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13694]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13690]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13695]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13694]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13696]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13695]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13697]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13696]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13698]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13697]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13699]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13698]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13700]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13699]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13701]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13700]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13701]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13702]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13703]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13702]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13704]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13704]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13705]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13703]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13706]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13705]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13707]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13706]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13708]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13707]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13709]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13708]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13710]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13709]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13711]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13710]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13712]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13711]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13713]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13712]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13714]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13714]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13713]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13715]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13716]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13715]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13717]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13716]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13718]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13717]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13719]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13718]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13720]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13719]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13721]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13721]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13722]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13722]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13723]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13723]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13724]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13720]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13725]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13724]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13726]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13725]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13727]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13726]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13728]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13728]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13729]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13727]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13730]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13729]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13731]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13730]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13732]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13731]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13733]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13732]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13734]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13733]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13735]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13734]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13736]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13735]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13737]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13736]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13738]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13737]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13739]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13738]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13740]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13739]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13741]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13740]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13742]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13741]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13743]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13742]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13744]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13743]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13745]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13744]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13746]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13745]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13747]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13746]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13747]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13748]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13749]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13748]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13750]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13749]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13751]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13751]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13752]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13752]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13753]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13750]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13754]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13753]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13755]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13754]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13756]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13755]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13757]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13756]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13758]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13757]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13759]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13758]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13760]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13759]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13761]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13760]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13762]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13761]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13763]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13762]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13764]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13763]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13765]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13764]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13766]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13765]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13767]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13766]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13768]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13767]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13769]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13768]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13770]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13769]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13771]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13770]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13771]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13772]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13773]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13772]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13774]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13773]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13775]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13774]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13776]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13776]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13777]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13775]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13778]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13778]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13779]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13779]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13780]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13780]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13777]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13781]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13782]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13781]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13783]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13782]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13784]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13783]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13785]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13784]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13786]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13785]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13787]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13786]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13788]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13787]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13789]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13788]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13790]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13789]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13791]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13790]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13792]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13791]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13793]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13792]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13794]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13793]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13795]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13794]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13796]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13795]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13797]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13796]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13798]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13797]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13799]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13799]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13800]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13798]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13801]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13800]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13802]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13801]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13803]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13802]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13803]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13804]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13805]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13804]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13806]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13805]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13807]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13806]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13808]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13808]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13809]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13809]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13810]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13810]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13811]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13807]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13812]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13811]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13813]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13812]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13814]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13813]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13815]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13814]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13816]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13815]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13817]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13816]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13818]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13817]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13819]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13818]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13820]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13819]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13821]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13821]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13822]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13820]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13823]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13823]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13824]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13822]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13825]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13824]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13826]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13825]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13827]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13826]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13828]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13827]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13828]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13829]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13830]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13829]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13831]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13830]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13832]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13831]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13833]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13832]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13834]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13833]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13835]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13835]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13836]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13836]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13837]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13837]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13838]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13834]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13839]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13838]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13840]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13839]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13841]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13840]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13842]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13841]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13843]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13842]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13844]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13844]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13845]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13843]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13846]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13845]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13847]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13846]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13848]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13847]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13849]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13848]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13850]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13849]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13851]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13850]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13852]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13851]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13853]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13852]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13854]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13853]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13855]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13854]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13856]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13855]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13857]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13856]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13858]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13857]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13859]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13858]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13860]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13859]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13861]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13860]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13862]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13861]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13863]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13862]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13864]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13863]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13865]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13865]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13866]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13866]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13867]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13864]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13868]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13867]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13869]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13868]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13870]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13869]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13871]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13870]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13872]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13871]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13873]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13872]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13874]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13873]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13875]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13874]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13876]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13875]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13877]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13876]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13878]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13877]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13879]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13878]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13880]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13879]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13881]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13880]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13882]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13881]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13883]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13882]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13884]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13883]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13885]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13885]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13884]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13886]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13887]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13886]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13888]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13887]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13889]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13888]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13890]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13889]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13891]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13890]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13892]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13892]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13893]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13891]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13894]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13893]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13895]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13895]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13896]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13896]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13897]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13897]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13898]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13894]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13899]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13898]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13900]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13899]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13901]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13900]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13901]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13902]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13903]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13902]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13904]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13903]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13905]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13904]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13906]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13905]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13907]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13906]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13908]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13907]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13909]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13908]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13909]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13910]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13911]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13910]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13912]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13911]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13913]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13912]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13914]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13914]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13915]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13913]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13916]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13915]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13917]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13916]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13918]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13917]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13919]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13918]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13920]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13919]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13921]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13920]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13922]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13921]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13923]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13922]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13924]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13923]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13925]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13925]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13926]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13926]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13927]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13927]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13928]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13924]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13929]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13928]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13930]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13929]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13931]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13930]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13932]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13931]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13933]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13932]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13933]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13934]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13935]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13934]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13936]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13936]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13937]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13937]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13938]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13938]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13939]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13939]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13940]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13935]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13941]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13941]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13942]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13940]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13942]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13943]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13944]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13943]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13945]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13944]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13946]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13945]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13947]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13946]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13948]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13947]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13949]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13948]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13950]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13949]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13951]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13950]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13952]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13951]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13953]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13952]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13954]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13953]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13955]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13954]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13956]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13955]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13957]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13957]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13958]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13958]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13959]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13956]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13959]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13960]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13961]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13960]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13962]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13961]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13963]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13962]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13964]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13963]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13965]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13964]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13966]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13965]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13967]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13966]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13968]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13967]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13969]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13968]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13970]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13969]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13971]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13970]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13972]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13971]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13973]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13972]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13974]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13973]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13975]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13974]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13976]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13975]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13977]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13976]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13978]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13977]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13979]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13978]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 13980]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13979]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 13981]]} + {:process 3 :type :fail :f :txn :value [[:append 6 13980]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13982]]} + {:process 2 :type :fail :f :txn :value [[:append 7 13981]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13983]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13983]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 13984]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13982]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 13985]]} + {:process 2 :type :fail :f :txn :value [[:append 0 13984]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13986]]} + {:process 3 :type :fail :f :txn :value [[:append 3 13985]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13987]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13986]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 13988]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13987]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 13989]]} + {:process 2 :type :fail :f :txn :value [[:append 5 13988]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 13990]]} + {:process 3 :type :fail :f :txn :value [[:append 0 13989]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 13991]]} + {:process 2 :type :fail :f :txn :value [[:append 4 13990]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 13991]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 13992]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 13993]]} + {:process 2 :type :fail :f :txn :value [[:append 6 13992]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 13994]]} + {:process 3 :type :fail :f :txn :value [[:append 5 13993]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 13995]]} + {:process 2 :type :fail :f :txn :value [[:append 1 13994]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 13995]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 13996]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 13997]]} + {:process 2 :type :fail :f :txn :value [[:append 3 13996]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 13998]]} + {:process 3 :type :fail :f :txn :value [[:append 2 13997]]} + {:process 2 :type :fail :f :txn :value [[:append 2 13998]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 13999]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14000]]} + {:process 3 :type :fail :f :txn :value [[:append 1 13999]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14001]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14000]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14002]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14001]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14003]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14003]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14004]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14002]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14005]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14004]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14006]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14005]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14007]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14006]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14008]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14007]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14009]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14009]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14010]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14010]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14011]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14011]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14012]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14008]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14013]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14012]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14014]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14013]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14015]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14014]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14016]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14015]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14017]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14016]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14018]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14017]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14019]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14018]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14020]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14019]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14021]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14020]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14021]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14022]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14023]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14022]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14024]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14023]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14025]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14025]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14026]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14024]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14026]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14027]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14028]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14028]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14029]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14027]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14030]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14029]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14031]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14030]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14031]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14032]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14033]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14032]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14034]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14033]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14035]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14034]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14036]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14036]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14037]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14037]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14038]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14035]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14039]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14038]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14040]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14039]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14041]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14040]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14041]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14042]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14043]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14042]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14044]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14043]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14045]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14044]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14045]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14046]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14047]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14046]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14048]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14047]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14049]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14048]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14049]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14050]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14051]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14050]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14052]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14052]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14051]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14053]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14054]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14053]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14055]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14054]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14056]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14055]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14056]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14057]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14058]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14057]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14059]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14058]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14060]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14059]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14061]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14060]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14061]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14062]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14063]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14062]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14064]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14064]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14065]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14065]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14066]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14066]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14067]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14063]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14068]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14067]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14069]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14068]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14070]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14069]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14071]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14070]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14072]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14071]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14073]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14072]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14074]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14073]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14075]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14074]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14076]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14075]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14077]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14077]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14078]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14076]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14079]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14078]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14080]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14079]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14081]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14080]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14082]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14081]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14083]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14082]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14084]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14083]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14085]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14084]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14085]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14086]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14087]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14086]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14088]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14087]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14089]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14088]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14090]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14089]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14091]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14090]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14092]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14091]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14093]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14092]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14094]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14094]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14095]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14095]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14096]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14096]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14097]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14097]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14098]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14093]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14099]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14098]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14100]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14099]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14101]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14100]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14101]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14102]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14103]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14102]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14104]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14103]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14105]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14104]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14105]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14106]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14107]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14106]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14108]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14107]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14109]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14108]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14109]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14110]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14111]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14110]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14112]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14111]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14112]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14113]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14114]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14113]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14115]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14114]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14116]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14115]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14117]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14116]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14117]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14118]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14119]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14118]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14120]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14119]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14121]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14120]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14122]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14122]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14123]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14123]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14124]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14121]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14125]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14124]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14126]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14125]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14127]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14126]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14127]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14128]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14129]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14128]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14130]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14129]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14131]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14130]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14131]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14132]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14133]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14132]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14134]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14133]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14135]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14134]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14136]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14135]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14137]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14136]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14138]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14137]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14139]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14138]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14140]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14139]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14141]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14140]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14142]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14141]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14143]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14142]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14143]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14144]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14145]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14144]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14146]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14146]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14147]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14145]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14148]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14148]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14149]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14147]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14150]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14150]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14151]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14151]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14152]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14152]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14149]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14154]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14153]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14153]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14155]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14154]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14156]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14155]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14157]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14156]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14158]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14157]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14159]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14158]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14160]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14159]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14161]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14160]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14162]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14161]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14163]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14162]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14164]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14163]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14165]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14164]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14166]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14165]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14167]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14166]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14168]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14167]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14169]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14168]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14170]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14169]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14171]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14171]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14172]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14170]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14173]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14172]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14174]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14173]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14175]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14174]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14176]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14175]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14177]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14176]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14178]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14177]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14179]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14178]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14180]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14180]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14181]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14181]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14182]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14182]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14183]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14179]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14183]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14184]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14185]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14184]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14186]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14185]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14187]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14186]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14188]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14187]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14189]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14188]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14190]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14189]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14191]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14190]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14192]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14191]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14193]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14193]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14194]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14192]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14195]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14195]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14196]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14196]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14197]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14194]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14198]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14197]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14199]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14198]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14200]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14199]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14201]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14200]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14201]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14202]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14203]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14202]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14204]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14203]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14205]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14204]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14205]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14206]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14207]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14206]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14208]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14208]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14209]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14209]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14210]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14210]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14211]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14207]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14212]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14211]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14213]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14212]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14214]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14213]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14215]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14215]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14216]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14214]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14217]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14217]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14218]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14216]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14219]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14219]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14220]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14220]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14221]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14218]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14222]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14221]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14223]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14222]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14224]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14223]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14225]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14224]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14226]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14225]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14226]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14227]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14228]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14227]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14228]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14229]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14230]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14230]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14231]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14229]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14232]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14231]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14233]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14232]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14234]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14233]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14235]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14234]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14236]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14235]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14237]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14236]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14238]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14237]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14239]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14239]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14240]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14240]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14241]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14238]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14242]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14242]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14243]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14241]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14244]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14244]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14245]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14243]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14245]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14246]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14247]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14246]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14248]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14247]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14249]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14248]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14250]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14249]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14251]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14250]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14252]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14251]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14253]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14252]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14254]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14253]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14255]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14254]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14256]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14255]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14257]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14256]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14258]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14257]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14259]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14258]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14260]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14259]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14261]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14260]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14262]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14261]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14263]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14262]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14264]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14263]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14265]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14265]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14266]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14266]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14267]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14264]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14267]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14268]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14269]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14268]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14270]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14269]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14271]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14270]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14272]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14271]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14273]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14272]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14274]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14273]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14275]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14274]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14276]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14275]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14277]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14276]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14278]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14277]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14279]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14278]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14280]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14279]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14281]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14280]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14282]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14281]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14283]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14283]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14282]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14284]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14285]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14284]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14286]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14286]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14287]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14285]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14288]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14287]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14289]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14288]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14290]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14289]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14291]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14290]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14292]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14291]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14293]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14292]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14294]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14293]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14295]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14295]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14296]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14296]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14297]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14297]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14298]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14294]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14299]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14298]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14300]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14299]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14301]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14300]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14302]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14301]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14303]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14302]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14303]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14304]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14305]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14304]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14306]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14306]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14307]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14305]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14308]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14307]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14309]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14308]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14310]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14309]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14311]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14310]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14312]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14311]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14313]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14312]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14314]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14313]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14315]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14314]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14316]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14315]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14317]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14316]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14318]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14317]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14319]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14318]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14320]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14319]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14321]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14320]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14322]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14321]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14323]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14322]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14324]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14323]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14325]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14325]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14326]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14326]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14327]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14327]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14328]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14324]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14329]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14328]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14330]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14329]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14331]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14331]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14332]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14330]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14332]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14333]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14334]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14333]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14335]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14334]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14336]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14335]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14337]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14336]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14337]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14338]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14339]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14338]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14339]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14340]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14341]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14340]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14342]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14341]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14343]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14342]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14344]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14343]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14345]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14344]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14346]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14345]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14347]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14346]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14348]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14347]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14349]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14348]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14350]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14349]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14351]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14351]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14352]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14352]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14353]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14353]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14354]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14354]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14355]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14355]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14356]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14350]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14357]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14356]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14358]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14357]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14359]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14358]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14360]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14359]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14361]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14360]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14362]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14361]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14363]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14362]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14364]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14363]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14365]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14364]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14366]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14365]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14367]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14366]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14368]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14367]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14369]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14368]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14369]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14370]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14371]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14370]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14372]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14371]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14373]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14372]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14373]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14374]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14375]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14374]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14376]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14375]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14377]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14376]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14378]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14377]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14379]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14379]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14380]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14378]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14381]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14381]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14382]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14382]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14383]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14383]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14380]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14384]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14385]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14384]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14386]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14385]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14387]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14386]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14388]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14387]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14389]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14388]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14390]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14389]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14391]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14390]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14391]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14392]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14393]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14392]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14394]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14393]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14395]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14394]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14395]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14396]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14396]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14397]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14398]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14397]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14399]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14398]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14400]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14399]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14401]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14401]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14402]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14400]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14403]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14403]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14404]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14402]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14405]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14405]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14406]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14404]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14407]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14406]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14408]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14407]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14409]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14408]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14410]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14410]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14411]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14411]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14412]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14409]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14413]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14412]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14414]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14413]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14415]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14414]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14416]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14415]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14417]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14416]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14418]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14417]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14419]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14418]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14419]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14420]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14421]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14420]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14422]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14421]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14423]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14422]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14424]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14423]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14425]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14425]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14426]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14426]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14427]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14424]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14428]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14427]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14429]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14428]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14430]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14429]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14431]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14430]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14432]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14431]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14433]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14432]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14433]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14434]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14435]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14434]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14436]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14436]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14437]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14437]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14438]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14438]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14439]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14435]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14440]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14439]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14441]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14440]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14442]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14441]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14443]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14442]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14444]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14443]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14445]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14444]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14446]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14445]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14447]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14446]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14448]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14447]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14449]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14449]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14450]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14448]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14450]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14451]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14452]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14451]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14452]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14453]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14453]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14454]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14455]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14454]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14456]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14455]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14457]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14456]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14458]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14457]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14459]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14458]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14460]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14459]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14461]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14460]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14462]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14461]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14463]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14462]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14464]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14463]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14465]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14464]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14466]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14466]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14467]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14467]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14468]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14468]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14469]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14465]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14470]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14469]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14471]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14471]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14472]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14470]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14473]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14473]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14474]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14472]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14475]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14474]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14476]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14475]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14477]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14476]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14478]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14477]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14479]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14478]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14480]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14479]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14481]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14480]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14482]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14481]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14482]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14483]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14484]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14483]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14485]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14484]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14486]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14485]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14487]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14486]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14488]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14487]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14489]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14488]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14490]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14489]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14491]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14490]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14492]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14491]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14493]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14492]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14494]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14493]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14495]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14495]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14496]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14494]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14497]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14496]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14497]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14498]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14499]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14498]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14500]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14499]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14501]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14500]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14501]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14502]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14503]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14502]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14504]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14503]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14505]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14504]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14505]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14506]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14507]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14506]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14508]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14507]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14509]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14508]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14510]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14510]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14511]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14509]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14512]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14511]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14513]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14512]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14514]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14513]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14515]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14514]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14516]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14515]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14517]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14516]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14518]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14517]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14519]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14519]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14520]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14518]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14521]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14520]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14522]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14521]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14523]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14522]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14524]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14524]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14525]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14525]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14526]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14526]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14527]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14523]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14527]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14528]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14529]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14528]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14530]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14529]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14531]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14530]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14532]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14531]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14533]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14532]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14534]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14533]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14535]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14534]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14536]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14535]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14537]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14536]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14538]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14537]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14539]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14538]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14540]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14540]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14541]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14539]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14541]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14542]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14543]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14542]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14544]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14543]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14545]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14544]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14546]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14545]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14547]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14546]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14548]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14547]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14549]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14548]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14550]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14550]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14551]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14551]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14552]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14549]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14553]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14552]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14554]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14553]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14555]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14554]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14556]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14555]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14557]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14556]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14558]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14557]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14559]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14558]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14559]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14560]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14561]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14560]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14562]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14561]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14563]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14562]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14563]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14564]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14565]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14564]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14566]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14566]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14567]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14565]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14567]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14568]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14569]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14568]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14570]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14569]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14571]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14570]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14572]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14571]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14573]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14572]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14573]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14574]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14575]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14574]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14576]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14575]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14577]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14576]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14578]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14577]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14579]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14578]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14580]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14580]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14581]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14581]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14582]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14582]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14583]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14579]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14584]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14583]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14585]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14584]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14586]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14586]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14587]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14585]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14587]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14588]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14589]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14588]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14590]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14589]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14591]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14590]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14592]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14591]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14593]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14592]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14594]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14593]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14595]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14594]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14596]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14595]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14597]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14596]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14598]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14597]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14599]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14598]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14599]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14600]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14601]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14600]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14602]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14601]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14603]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14602]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14603]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14604]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14605]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14604]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14606]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14605]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14607]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14606]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14608]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14608]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14609]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14609]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14610]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14610]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14611]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14607]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14611]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14612]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14613]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14612]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14614]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14613]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14615]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14614]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14616]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14615]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14617]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14616]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14618]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14617]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14619]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14618]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14620]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14619]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14621]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14620]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14622]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14621]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14623]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14622]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14624]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14624]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14623]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14625]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14626]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14625]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14627]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14626]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14628]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14627]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14629]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14628]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14630]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14629]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14631]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14630]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14632]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14631]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14633]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14632]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14634]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14633]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14635]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14634]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14636]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14636]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14637]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14637]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14638]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14635]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14639]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14639]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14640]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14638]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14641]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14640]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14642]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14641]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14643]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14642]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14644]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14643]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14645]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14644]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14646]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14645]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14647]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14646]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14648]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14647]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14649]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14648]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14650]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14649]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14651]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14650]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14652]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14651]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14653]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14652]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14654]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14653]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14655]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14654]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14656]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14655]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14657]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14656]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14658]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14657]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14659]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14658]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14660]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14659]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14661]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14660]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14662]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14661]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14663]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14663]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14664]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14662]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14664]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14665]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14666]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14665]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14667]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14666]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14667]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14668]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14669]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14668]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14670]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14669]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14671]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14670]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14671]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14672]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14673]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14672]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14674]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14673]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14675]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14674]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14675]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14676]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14677]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14676]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14678]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14677]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14679]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14678]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14679]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14680]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14680]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14681]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14682]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14681]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14682]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14683]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14684]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14683]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14685]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14685]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14686]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14684]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14687]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14687]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14688]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14688]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14689]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14686]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14690]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14689]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14691]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14690]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14692]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14691]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14693]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14692]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14694]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14693]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14695]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14694]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14696]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14695]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14697]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14696]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14698]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14697]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14699]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14698]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14700]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14699]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14701]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14700]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14702]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14701]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14703]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14702]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14704]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14703]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14705]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14704]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14706]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14705]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14707]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14706]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14708]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14707]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14709]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14708]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14710]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14709]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14711]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14710]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14712]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14711]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14713]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14713]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14714]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14712]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14715]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14714]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14716]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14716]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14717]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14717]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14718]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14718]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14719]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14715]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14720]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14719]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14721]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14720]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14722]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14721]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14723]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14722]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14724]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14723]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14725]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14724]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14726]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14725]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14727]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14726]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14728]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14727]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14729]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14728]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14730]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14729]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14731]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14730]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14732]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14731]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14733]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14732]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14734]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14733]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14735]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14735]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14736]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14734]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14737]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14737]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14738]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14736]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14738]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14739]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14740]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14739]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14741]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14740]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14742]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14741]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14743]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14742]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14744]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14744]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14745]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14745]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14746]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14746]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14747]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14743]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14747]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14748]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14749]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14748]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14750]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14749]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14751]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14750]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14752]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14751]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14753]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14752]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14754]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14753]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14755]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14754]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14756]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14755]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14757]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14756]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14758]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14757]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14759]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14759]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14760]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14758]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14761]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14760]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14762]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14761]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14763]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14762]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14764]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14763]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14765]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14764]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14766]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14765]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14767]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14766]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14768]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14767]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14769]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14768]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14770]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14769]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14771]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14770]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14772]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14771]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14773]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14772]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14774]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14774]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14775]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14775]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14776]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14776]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14777]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14777]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14778]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14778]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14779]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14773]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14780]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14780]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14781]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14779]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14782]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14781]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14783]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14782]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14784]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14783]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14785]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14784]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14786]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14785]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14787]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14786]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14788]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14787]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14789]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14788]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14790]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14789]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14791]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14790]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14791]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14792]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14793]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14792]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14794]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14793]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14795]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14794]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14795]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14796]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14797]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14796]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14798]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14797]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14799]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14798]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14800]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14799]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14801]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14800]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14802]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14801]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14803]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14803]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14804]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14804]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14805]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14805]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14806]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14806]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14807]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14807]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14808]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14808]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14809]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14802]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14810]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14809]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14811]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14811]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14812]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14810]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14813]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14813]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14814]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14812]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14815]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14814]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14816]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14815]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14817]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14816]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14818]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14817]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14819]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14818]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14820]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14819]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14821]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14820]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14822]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14821]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14823]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14822]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14824]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14823]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14825]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14824]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14826]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14825]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14827]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14827]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14828]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14826]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14829]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14829]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14830]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14828]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14831]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14830]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14832]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14831]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14833]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14833]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14834]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14834]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14835]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14835]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14836]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14832]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14837]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14836]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14838]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14837]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14839]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14838]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14839]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14840]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14841]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14840]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14842]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14841]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14843]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14842]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14843]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14844]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14845]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14844]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14846]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14845]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14847]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14846]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14848]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14847]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14849]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14848]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14850]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14850]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14851]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14849]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14851]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14852]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14853]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14852]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14854]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14853]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14855]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14854]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14856]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14855]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14857]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14856]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14858]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14857]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14859]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14858]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14860]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14859]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14861]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14860]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14862]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14861]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14863]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14863]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14864]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14864]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14865]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14865]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14866]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14862]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14867]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14866]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14868]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14867]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14869]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14868]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14870]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14869]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14871]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14871]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14872]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14870]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14873]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14872]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14874]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14873]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14875]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14874]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14876]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14875]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14877]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14876]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14878]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14877]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14879]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14878]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14880]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14879]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14881]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14880]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14882]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14881]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14883]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14882]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14884]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14883]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14884]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14885]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14886]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14885]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14887]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14886]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14888]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14887]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14889]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14888]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14890]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14889]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14891]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14891]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14892]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14892]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14893]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14893]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14894]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14890]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14895]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14895]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14896]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14894]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14897]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14896]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14898]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14897]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14899]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14898]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14900]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14899]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14901]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14900]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14902]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14901]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14903]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14902]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14904]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14903]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14905]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14904]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14906]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14905]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14907]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14906]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14908]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14907]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14909]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14908]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14909]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14910]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14911]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14910]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14912]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14911]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14913]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14912]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14914]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14913]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14915]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14914]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14916]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14915]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14917]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14916]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14918]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14917]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14919]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14918]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14920]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14920]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14919]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14921]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14922]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14922]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14923]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14921]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14924]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14923]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14925]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14924]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14926]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14925]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14927]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14926]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14928]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14927]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14929]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14928]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14930]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14929]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14931]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14930]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14932]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14931]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14933]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14932]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14934]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14933]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14935]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14934]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14936]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14935]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14937]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14936]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14938]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14937]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14939]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14938]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14940]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14939]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14941]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14940]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14942]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14941]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14943]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14942]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14944]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14943]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14945]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14944]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14946]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14945]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14947]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14947]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14948]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14946]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14949]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14948]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14950]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14949]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14951]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14950]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14951]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14952]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14953]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14952]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14954]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14953]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14955]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14954]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14955]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14956]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14957]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14956]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14958]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14957]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14959]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14958]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14959]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14960]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14961]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14960]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14962]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14961]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14963]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14962]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14963]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14964]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14965]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14965]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14966]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14964]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14967]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14966]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14968]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14967]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14969]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14968]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14970]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14969]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14971]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14971]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14972]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14970]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14973]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14972]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14974]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14973]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14975]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14974]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14975]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14976]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 14977]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14976]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14978]]} + {:process 3 :type :fail :f :txn :value [[:append 0 14977]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14979]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14978]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14979]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 14980]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 14981]]} + {:process 2 :type :fail :f :txn :value [[:append 0 14980]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14982]]} + {:process 3 :type :fail :f :txn :value [[:append 5 14981]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14983]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14982]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14983]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 14984]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 14985]]} + {:process 2 :type :fail :f :txn :value [[:append 5 14984]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14986]]} + {:process 3 :type :fail :f :txn :value [[:append 2 14985]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14987]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14986]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14987]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 14988]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 14989]]} + {:process 2 :type :fail :f :txn :value [[:append 6 14988]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14990]]} + {:process 3 :type :fail :f :txn :value [[:append 7 14989]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 14991]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14990]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 14992]]} + {:process 3 :type :fail :f :txn :value [[:append 6 14991]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 14993]]} + {:process 2 :type :fail :f :txn :value [[:append 3 14992]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 14994]]} + {:process 2 :type :fail :f :txn :value [[:append 2 14994]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 14995]]} + {:process 3 :type :fail :f :txn :value [[:append 4 14993]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 14996]]} + {:process 2 :type :fail :f :txn :value [[:append 4 14995]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 14997]]} + {:process 3 :type :fail :f :txn :value [[:append 3 14996]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 14998]]} + {:process 2 :type :fail :f :txn :value [[:append 7 14997]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 14999]]} + {:process 2 :type :fail :f :txn :value [[:append 1 14999]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15000]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15000]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15001]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15001]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15002]]} + {:process 3 :type :fail :f :txn :value [[:append 1 14998]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15003]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15002]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15004]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15003]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15005]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15004]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15006]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15005]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15007]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15006]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15008]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15007]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15009]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15008]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15010]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15009]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15011]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15010]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15012]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15011]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15013]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15012]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15014]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15013]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15015]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15014]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15016]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15015]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15017]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15016]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15018]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15018]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15019]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15017]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15020]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15019]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15021]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15020]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15022]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15022]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15023]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15021]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15024]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15023]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15025]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15024]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15026]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15025]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15027]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15026]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15028]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15028]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15029]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15029]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15030]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15030]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15031]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15031]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15032]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15027]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15033]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15032]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15034]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15033]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15035]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15034]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15035]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15036]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15037]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15036]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15038]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15037]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15039]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15038]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15040]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15040]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15041]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15039]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15042]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15041]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15043]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15042]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15044]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15043]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15045]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15044]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15046]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15045]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15047]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15046]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15048]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15047]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15049]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15048]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15050]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15049]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15051]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15050]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15052]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15051]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15053]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15052]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15054]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15053]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15055]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15054]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15056]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15055]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15057]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15056]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15058]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15057]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15059]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15059]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15060]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15060]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15061]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15061]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15062]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15062]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15063]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15058]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15064]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15063]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15065]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15064]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15066]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15065]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15067]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15066]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15068]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15067]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15069]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15068]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15070]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15069]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15071]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15070]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15072]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15071]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15073]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15072]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15074]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15073]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15075]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15074]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15076]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15075]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15077]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15076]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15078]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15077]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15079]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15078]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15079]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15080]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15081]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15080]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15082]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15081]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15083]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15082]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15084]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15083]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15085]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15085]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15086]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15084]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15087]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15086]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15088]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15087]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15089]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15089]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15090]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15090]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15091]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15088]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15091]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15092]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15093]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15092]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15094]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15093]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15095]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15094]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15095]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15096]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15097]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15096]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15098]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15097]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15099]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15098]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15100]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15099]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15101]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15100]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15102]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15101]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15103]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15102]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15104]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15103]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15105]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15104]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15106]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15105]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15107]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15106]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15108]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15107]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15109]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15108]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15110]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15109]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15111]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15111]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15112]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15110]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15113]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15112]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15114]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15113]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15115]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15114]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15116]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15116]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15117]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15117]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15118]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15118]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15119]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15115]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15119]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15120]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15121]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15120]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15122]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15121]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15123]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15122]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15124]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15123]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15125]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15124]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15126]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15125]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15127]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15126]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15128]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15127]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15129]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15128]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15130]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15129]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15131]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15131]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15132]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15130]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15133]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15132]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15134]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15133]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15135]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15134]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15136]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15135]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15136]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15137]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15138]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15137]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15139]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15138]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15140]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15139]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15141]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15140]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15142]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15141]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15143]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15142]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15144]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15143]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15145]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15144]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15146]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15145]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15147]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15147]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15148]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15148]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15149]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15149]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15150]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15146]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15151]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15150]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15152]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15151]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15153]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15152]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15154]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15154]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15155]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15153]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15156]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15155]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15157]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15156]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15158]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15157]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15159]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15158]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15160]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15159]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15161]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15160]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15162]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15161]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15163]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15162]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15164]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15163]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15165]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15164]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15166]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15165]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15167]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15166]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15168]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15167]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15169]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15168]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15170]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15169]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15171]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15170]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15172]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15171]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15173]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15172]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15174]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15173]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15175]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15174]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15176]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15175]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15177]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15177]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15176]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15178]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15179]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15178]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15180]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15179]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15181]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15181]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15182]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15182]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15183]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15180]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15183]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15184]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15185]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15184]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15186]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15185]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15187]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15186]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15187]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15188]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15189]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15188]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15190]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15189]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15191]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15190]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15191]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15192]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15192]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15193]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15194]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15193]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15194]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15195]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15196]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15195]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15197]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15196]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15198]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15197]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15199]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15198]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15199]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15200]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15201]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15200]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15202]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15201]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15203]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15202]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15204]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15203]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15205]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15204]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15206]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15205]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15207]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15206]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15208]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15207]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15209]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15209]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15210]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15208]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15211]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15210]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15212]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15211]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15213]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15212]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15214]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15213]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15215]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15214]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15216]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15215]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15217]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15216]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15218]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15217]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15219]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15218]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15220]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15219]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15221]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15220]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15222]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15221]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15223]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15222]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15224]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15223]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15225]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15224]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15226]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15225]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15227]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15227]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15228]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15228]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15229]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15229]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15230]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15226]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15231]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15230]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15232]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15231]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15233]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15232]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15234]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15233]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15235]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15234]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15236]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15235]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15237]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15236]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15238]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15237]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15239]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15238]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15240]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15239]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15241]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15240]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15242]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15241]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15243]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15242]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15244]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15243]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15245]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15244]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15246]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15245]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15247]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15246]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15248]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15247]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15249]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15248]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15250]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15249]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15250]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15251]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15252]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15251]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15253]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15252]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15254]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15253]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15255]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15254]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15256]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15255]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15257]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15256]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15258]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15257]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15259]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15258]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15260]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15259]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15261]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15260]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15262]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15261]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15263]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15262]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15264]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15263]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15265]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15264]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15266]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15265]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15267]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15266]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15268]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15267]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15269]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15268]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15270]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15269]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15271]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15270]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15272]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15271]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15273]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15272]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15274]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15273]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15275]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15274]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15276]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15276]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15277]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15275]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15278]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15277]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15279]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15278]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15280]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15280]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15281]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15281]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15282]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15282]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15279]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15283]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15284]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15284]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15285]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15283]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15286]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15285]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15287]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15286]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15288]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15287]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15289]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15288]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15290]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15289]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15291]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15290]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15292]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15291]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15293]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15292]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15294]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15293]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15295]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15294]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15296]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15295]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15297]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15296]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15298]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15297]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15299]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15298]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15300]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15299]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15301]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15300]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15302]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15301]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15303]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15303]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15304]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15302]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15305]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15304]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15306]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15305]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15307]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15306]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15308]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15307]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15309]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15308]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15310]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15310]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15311]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15311]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15312]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15309]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15312]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15313]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15314]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15313]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15315]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15314]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15316]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15315]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15317]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15316]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15318]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15317]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15319]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15318]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15320]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15319]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15321]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15320]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15322]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15321]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15323]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15322]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15323]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15324]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15325]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15324]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15326]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15326]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15327]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15325]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15328]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15327]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15329]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15328]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15330]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15329]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15331]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15330]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15332]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15331]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15333]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15332]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15334]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15333]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15335]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15334]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15336]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15335]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15337]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15336]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15338]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15337]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15339]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15339]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15340]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15340]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15341]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15341]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15342]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15338]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15343]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15342]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15344]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15343]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15345]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15344]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15346]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15345]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15347]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15347]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15348]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15346]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15349]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15348]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15350]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15349]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15351]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15350]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15352]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15351]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15353]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15352]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15354]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15353]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15355]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15354]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15356]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15355]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15357]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15356]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15358]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15357]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15359]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15358]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15360]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15359]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15361]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15360]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15362]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15361]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15363]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15362]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15364]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15363]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15364]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15365]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15366]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15366]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15367]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15367]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15368]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15368]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15369]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15365]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15369]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15370]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15371]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15370]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15372]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15372]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15373]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15371]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15374]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15373]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15375]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15374]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15375]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15376]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15377]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15376]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15378]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15377]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15379]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15378]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15379]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15380]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15381]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15380]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15382]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15381]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15383]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15382]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15384]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15383]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15385]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15384]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15386]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15385]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15387]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15386]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15387]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15388]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15389]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15388]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15390]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15389]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15391]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15390]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15392]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15392]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15393]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15393]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15394]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15391]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15395]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15394]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15396]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15396]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15397]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15395]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15398]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15397]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15399]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15398]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15400]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15399]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15401]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15400]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15402]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15401]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15403]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15402]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15404]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15403]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15405]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15404]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15406]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15405]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15407]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15406]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15408]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15407]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15409]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15408]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15410]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15409]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15411]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15410]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15412]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15411]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15413]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15412]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15414]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15413]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15415]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15414]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15416]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15415]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15417]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15416]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15418]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15417]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15419]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15418]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15420]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15419]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15421]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15421]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15422]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15422]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15423]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15420]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15424]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15423]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15425]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15424]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15426]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15425]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15427]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15426]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15428]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15427]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15429]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15428]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15430]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15429]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15431]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15430]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15432]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15431]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15433]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15432]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15434]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15433]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15435]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15434]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15436]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15435]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15437]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15436]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15438]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15437]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15439]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15438]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15440]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15439]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15441]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15440]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15442]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15441]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15443]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15442]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15444]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15443]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15445]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15445]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15446]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15444]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15447]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15446]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15448]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15447]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15449]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15448]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15450]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15450]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15451]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15451]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15452]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15452]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15453]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15453]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15449]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15454]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15455]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15454]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15456]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15455]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15457]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15456]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15457]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15458]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15459]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15458]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15460]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15459]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15461]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15460]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15462]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15461]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15463]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15462]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15464]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15463]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15465]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15464]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15466]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15466]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15467]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15465]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15467]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15468]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15469]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15468]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15470]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15469]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15471]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15470]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15472]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15471]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15473]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15472]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15474]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15473]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15475]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15474]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15476]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15475]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15477]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15476]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15477]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15478]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15479]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15478]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15479]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15480]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15481]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15480]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15482]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15482]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15483]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15483]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15484]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15484]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15485]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15481]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15486]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15485]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15487]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15487]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15488]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15486]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15488]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15489]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15490]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15489]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15491]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15490]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15491]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15492]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15493]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15492]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15494]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15493]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15495]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15494]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15495]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15496]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15497]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15496]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15498]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15497]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15499]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15498]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15499]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15500]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15501]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15500]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15502]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15501]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15503]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15502]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15503]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15504]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15505]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15504]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15506]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15505]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15507]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15506]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15507]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15508]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15509]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15508]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15510]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15510]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15511]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15509]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15512]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15511]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15513]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15513]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15514]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15514]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15515]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15515]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15516]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15512]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15517]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15516]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15518]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15517]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15519]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15518]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15520]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15519]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15521]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15520]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15522]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15521]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15523]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15522]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15523]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15524]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15525]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15524]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15526]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15525]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15527]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15526]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15528]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15527]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15529]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15528]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15530]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15529]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15531]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15530]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15531]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15532]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15533]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15532]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15534]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15533]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15535]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15534]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15536]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15535]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15537]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15536]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15538]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15537]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15539]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15538]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15540]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15540]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15541]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15541]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15542]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15542]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15543]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15539]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15543]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15544]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15545]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15544]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15546]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15545]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15547]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15546]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15548]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15547]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15549]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15548]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15550]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15549]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15551]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15550]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15552]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15551]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15553]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15552]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15554]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15553]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15555]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15554]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15556]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15555]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15557]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15557]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15558]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15556]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15559]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15558]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15560]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15559]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15561]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15560]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15562]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15561]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15563]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15562]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15563]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15564]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15565]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15564]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15566]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15565]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15567]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15566]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15567]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15568]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15569]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15568]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15570]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15570]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15571]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15571]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15572]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15572]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15573]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15569]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15574]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15573]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15575]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15574]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15576]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15575]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15577]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15576]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15578]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15578]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15579]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15577]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15580]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15580]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15581]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15579]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15582]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15581]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15583]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15582]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15584]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15583]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15585]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15584]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15586]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15585]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15587]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15586]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15588]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15587]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15589]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15588]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15590]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15589]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15591]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15590]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15592]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15591]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15592]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15593]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15594]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15593]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15595]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15594]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15596]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15595]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15597]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15596]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15598]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15597]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15599]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15599]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15600]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15600]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15601]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15598]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15601]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15602]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15603]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15602]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15604]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15604]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15605]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15603]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15606]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15605]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15607]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15606]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15607]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15608]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15609]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15608]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15610]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15609]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15611]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15610]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15611]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15612]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15613]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15612]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15614]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15613]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15615]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15614]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15615]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15616]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15617]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15616]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15618]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15617]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15619]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15618]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15619]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15620]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15621]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15620]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15622]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15621]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15623]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15622]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15624]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15623]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15625]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15624]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15626]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15626]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15627]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15627]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15628]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15625]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15629]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15628]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15630]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15629]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15631]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15630]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15632]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15631]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15633]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15632]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15633]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15634]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15635]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15634]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15636]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15635]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15637]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15636]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15637]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15638]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15639]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15638]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15640]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15639]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15641]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15640]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15641]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15642]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15643]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15642]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15644]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15643]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15645]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15644]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15646]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15645]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15647]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15646]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15648]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15647]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15648]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15649]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15650]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15649]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15651]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15651]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15652]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15650]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15653]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15653]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15654]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15654]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15655]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15655]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15656]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15652]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15656]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15657]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15658]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15657]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15659]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15658]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15660]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15659]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15661]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15660]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15662]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15661]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15663]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15662]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15664]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15663]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15665]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15664]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15666]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15665]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15667]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15666]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15667]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15668]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15669]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15668]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15670]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15669]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15671]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15670]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15671]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15672]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15673]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15672]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15674]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15673]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15675]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15674]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15676]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15676]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15677]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15675]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15678]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15677]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15679]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15679]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15680]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15678]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15681]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15680]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15682]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15682]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15683]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15683]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15684]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15681]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15684]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15685]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15686]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15685]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15687]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15686]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15688]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15687]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15689]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15688]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15690]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15689]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15691]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15690]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15691]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15692]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15693]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15692]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15694]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15693]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15695]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15694]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15695]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15696]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15697]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15696]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15698]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15698]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15699]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15697]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15700]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15699]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15701]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15700]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15702]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15701]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15703]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15702]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15704]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15703]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15705]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15704]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15705]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15706]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15707]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15706]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15708]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15707]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15709]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15708]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15710]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15709]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15711]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15711]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15712]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15712]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15713]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15713]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15714]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15710]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15715]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15714]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15716]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15715]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15717]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15716]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15718]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15718]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15719]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15717]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15720]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15719]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15721]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15720]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15722]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15721]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15723]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15722]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15724]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15723]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15725]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15724]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15726]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15725]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15727]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15726]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15728]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15727]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15729]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15728]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15730]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15729]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15731]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15730]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15732]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15731]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15733]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15732]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15734]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15733]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15735]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15734]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15736]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15735]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15737]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15736]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15738]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15737]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15739]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15738]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15740]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15739]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15741]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15741]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15742]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15742]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15743]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15743]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15744]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15740]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15745]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15745]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15746]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15744]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15747]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15746]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15748]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15747]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15749]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15748]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15750]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15749]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15751]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15750]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15752]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15751]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15753]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15752]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15754]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15753]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15754]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15756]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15756]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15757]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15757]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15758]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15758]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15759]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15759]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15760]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15760]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15761]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15761]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15762]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15755]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15755]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15763]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15763]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15764]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15762]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15765]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15764]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15766]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15765]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15767]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15766]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15768]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15767]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15769]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15768]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15769]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15770]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15771]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15770]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15772]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15772]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15773]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15771]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15774]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15773]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15775]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15774]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15776]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15775]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15777]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15776]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15778]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15777]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15779]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15778]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15780]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15779]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15781]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15780]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15782]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15781]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15783]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15782]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15784]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15783]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15785]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15784]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15786]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15785]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15787]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15786]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15788]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15787]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15789]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15788]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15790]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15789]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15791]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15791]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15792]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15792]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15793]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15793]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15794]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15794]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15795]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15790]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15795]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15796]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15797]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15796]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15798]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15797]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15799]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15798]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15800]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15799]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15801]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15800]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15802]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15801]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15803]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15802]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15804]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15803]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15805]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15804]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15806]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15805]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15807]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15806]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15808]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15807]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15809]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15808]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15810]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15809]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15811]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15810]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15812]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15811]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15813]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15812]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15814]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15813]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15815]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15814]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15816]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15815]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15817]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15816]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15818]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15817]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15819]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15818]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15819]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15820]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15821]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15820]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15822]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15821]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15823]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15822]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15824]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15823]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15825]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15824]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15826]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15825]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15827]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15826]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15827]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15828]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15829]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15828]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15830]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15829]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15831]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15830]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15832]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15831]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15833]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15832]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15834]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15833]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15835]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15834]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15835]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15836]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15837]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15836]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15838]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15837]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15839]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15838]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15839]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15840]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15841]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15840]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15842]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15841]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15843]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15842]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15844]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15844]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15845]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15843]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15846]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15845]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15847]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15847]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15848]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15848]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15849]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15849]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15850]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15846]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15851]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15850]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15852]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15851]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15853]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15852]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15854]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15853]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15855]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15854]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15855]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15856]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15857]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15856]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15858]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15857]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15859]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15858]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15860]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15859]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15861]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15860]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15862]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15861]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15863]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15862]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15864]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15863]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15865]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15864]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15866]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15866]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15867]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15865]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15868]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15867]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15869]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15868]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15870]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15869]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15871]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15870]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15872]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15871]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15873]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15872]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15874]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15873]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15875]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15875]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15874]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15876]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15877]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15876]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15878]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15878]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15879]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15879]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15880]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15880]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15881]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15877]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15882]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15881]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15883]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15882]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15884]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15883]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15885]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15884]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15886]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15885]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15887]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15887]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15888]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15886]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15889]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15889]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15890]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15888]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15891]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15890]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15892]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15891]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15893]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15892]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15894]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15893]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15895]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15894]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15896]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15895]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15897]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15896]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15898]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15897]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15899]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15898]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15900]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15899]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15901]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15900]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15902]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15901]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15903]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15902]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15904]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15903]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15905]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15904]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15906]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15905]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15907]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15907]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15908]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15908]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15909]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15909]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15910]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15910]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15911]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15906]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15912]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15911]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15913]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15912]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15914]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15913]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15915]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15914]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15916]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15915]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15917]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15916]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15918]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15917]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15919]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15918]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15920]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15919]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15921]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15920]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15922]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15921]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15923]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15922]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15924]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15923]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15925]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15924]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15926]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15925]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15927]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15926]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15928]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15927]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15929]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15928]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15930]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15929]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15931]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15930]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15932]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15931]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15932]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15933]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15934]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15933]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15934]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15935]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15936]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15936]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15937]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15937]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15938]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15938]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15939]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15939]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15935]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15940]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15941]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15940]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15942]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15941]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15943]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15942]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15944]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15943]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15945]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15944]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15946]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15945]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15947]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15946]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15947]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15948]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15949]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15948]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15950]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15949]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15951]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15950]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15951]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15952]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15953]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15952]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15954]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15954]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15955]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15953]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15956]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15955]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15957]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15956]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15958]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15957]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15959]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15958]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15960]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15959]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15961]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15960]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15962]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15961]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15963]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15962]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15964]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15963]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15965]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15965]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15966]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15966]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15967]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15967]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15968]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15964]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15969]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15968]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15970]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15969]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15971]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15970]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15972]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15971]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 15973]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15972]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15974]]} + {:process 3 :type :fail :f :txn :value [[:append 0 15973]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15975]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15974]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15975]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15976]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 15977]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15976]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15978]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15978]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15979]]} + {:process 3 :type :fail :f :txn :value [[:append 5 15977]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15980]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15979]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15981]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15980]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 15982]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15981]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 15983]]} + {:process 3 :type :fail :f :txn :value [[:append 2 15982]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15984]]} + {:process 2 :type :fail :f :txn :value [[:append 4 15983]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15985]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15984]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15985]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 15986]]} + {:process 2 :type :fail :f :txn :value [[:append 1 15986]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15987]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15987]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 15988]]} + {:process 2 :type :fail :f :txn :value [[:append 2 15988]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15990]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 15989]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15990]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 15989]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 15991]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 15992]]} + {:process 3 :type :fail :f :txn :value [[:append 6 15991]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 15993]]} + {:process 2 :type :fail :f :txn :value [[:append 7 15992]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 15994]]} + {:process 3 :type :fail :f :txn :value [[:append 4 15993]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 15995]]} + {:process 2 :type :fail :f :txn :value [[:append 6 15994]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 15996]]} + {:process 3 :type :fail :f :txn :value [[:append 3 15995]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 15997]]} + {:process 2 :type :fail :f :txn :value [[:append 0 15996]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 15998]]} + {:process 2 :type :fail :f :txn :value [[:append 3 15998]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 15999]]} + {:process 2 :type :fail :f :txn :value [[:append 5 15999]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16000]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16000]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 15997]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16001]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16002]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16001]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16003]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16002]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16003]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16004]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16005]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16004]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16006]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16005]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16007]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16006]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16008]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16007]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16009]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16008]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16010]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16009]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16011]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16010]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16012]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16011]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16013]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16012]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16014]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16013]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16015]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16014]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16016]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16015]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16017]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16016]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16018]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16017]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16019]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16018]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16020]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16019]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16021]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16020]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16022]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16021]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16023]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16023]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16024]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16022]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16024]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16025]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16026]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16025]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16027]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16026]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16028]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16028]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16029]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16029]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16030]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16030]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16031]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16027]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16031]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16032]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16033]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16032]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16034]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16033]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16034]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16036]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16035]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16036]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16037]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16035]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16037]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16038]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16039]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16038]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16040]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16039]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16041]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16040]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16041]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16042]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16043]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16042]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16044]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16044]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16045]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16043]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16046]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16046]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16045]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16047]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16048]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16048]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16049]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16047]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16050]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16049]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16051]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16050]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16052]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16051]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16053]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16052]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16054]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16053]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16055]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16054]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16056]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16056]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16057]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16057]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16058]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16058]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16059]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16055]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16060]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16059]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16061]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16060]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16062]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16061]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16063]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16062]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16064]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16063]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16065]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16064]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16066]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16065]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16067]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16066]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16068]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16068]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16069]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16067]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16070]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16069]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16071]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16070]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16071]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16072]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16073]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16072]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16074]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16073]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16075]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16074]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16075]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16076]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16077]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16076]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16078]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16077]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16079]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16078]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16079]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16080]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16081]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16080]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16082]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16081]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16083]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16082]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16084]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16084]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16085]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16085]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16086]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16083]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16087]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16086]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16088]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16087]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16089]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16088]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16089]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16090]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16091]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16090]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16092]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16092]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16093]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16091]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16094]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16093]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16095]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16094]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16096]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16095]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16097]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16096]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16098]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16097]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16099]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16098]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16100]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16099]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16101]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16100]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16102]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16101]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16103]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16102]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16104]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16103]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16104]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16105]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16106]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16105]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16107]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16106]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16108]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16107]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16109]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16108]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16110]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16110]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16111]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16111]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16112]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16112]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16113]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16109]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16114]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16113]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16115]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16114]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16116]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16116]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16117]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16115]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16118]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16117]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16119]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16118]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16119]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16120]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16121]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16120]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16122]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16121]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16123]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16122]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16124]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16123]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16125]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16124]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16126]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16125]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16127]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16126]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16128]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16127]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16129]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16128]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16130]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16129]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16131]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16130]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16131]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16132]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16133]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16132]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16134]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16133]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16135]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16134]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16136]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16135]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16137]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16136]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16138]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16138]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16139]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16139]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16140]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16140]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16141]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16137]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16142]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16141]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16143]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16142]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16144]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16143]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16145]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16144]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16146]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16145]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16147]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16146]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16148]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16147]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16149]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16148]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16150]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16149]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16151]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16150]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16152]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16151]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16153]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16152]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16154]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16153]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16155]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16154]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16156]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16155]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16157]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16156]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16158]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16157]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16159]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16158]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16160]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16160]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16159]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16161]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16162]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16161]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16163]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16162]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16164]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16163]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16165]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16164]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16166]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16166]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16167]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16167]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16168]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16165]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16169]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16168]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16170]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16169]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16171]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16170]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16171]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16172]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16173]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16172]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16174]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16173]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16175]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16174]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16175]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16176]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16177]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16176]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16178]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16177]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16179]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16178]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16179]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16180]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16181]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16180]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16182]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16181]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16183]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16182]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16184]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16183]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16185]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16184]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16186]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16185]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16187]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16186]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16187]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16188]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16189]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16188]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16190]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16190]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16191]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16189]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16192]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16191]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16193]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16192]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16194]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16193]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16195]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16195]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16196]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16196]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16197]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16197]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16198]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16194]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16199]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16198]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16200]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16199]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16201]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16200]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16202]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16201]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16203]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16202]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16203]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16204]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16205]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16204]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16206]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16205]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16207]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16206]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16208]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16207]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16209]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16208]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16210]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16209]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16211]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16211]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16212]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16210]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16213]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16212]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16214]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16213]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16215]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16214]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16216]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16215]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16217]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16216]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16217]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16218]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16219]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16219]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16218]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16220]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16221]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16220]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16222]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16221]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16223]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16222]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16224]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16224]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16225]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16225]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16226]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16226]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16227]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16223]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16227]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16228]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16229]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16228]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16230]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16229]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16231]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16230]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16232]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16231]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16233]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16232]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16234]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16234]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16235]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16233]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16236]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16235]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16237]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16236]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16238]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16237]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16239]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16238]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16240]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16239]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16241]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16240]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16242]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16241]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16243]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16242]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16244]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16243]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16245]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16244]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16246]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16245]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16246]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16247]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16248]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16247]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16249]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16248]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16250]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16249]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16251]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16251]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16252]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16252]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16253]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16253]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16254]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16254]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16255]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16250]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16255]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16256]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16257]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16256]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16258]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16258]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16259]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16257]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16260]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16259]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16261]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16260]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16262]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16261]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16263]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16262]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16264]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16263]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16265]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16264]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16265]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16266]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16266]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16267]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16267]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16268]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16268]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16269]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16269]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16270]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16270]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16271]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16272]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16271]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16273]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16272]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16274]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16274]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16275]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16273]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16276]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16275]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16277]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16276]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16278]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16277]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16279]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16278]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16280]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16279]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16281]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16280]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16282]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16281]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16283]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16282]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16284]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16283]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16285]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16284]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16286]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16285]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16287]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16286]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16288]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16287]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16289]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16288]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16290]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16290]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16291]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16289]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16291]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16292]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16293]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16292]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16294]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16293]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16295]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16294]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16296]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16295]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16297]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16296]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16298]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16297]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16299]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16298]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16300]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16300]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16301]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16301]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16302]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16299]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16302]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16303]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16304]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16303]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16305]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16304]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16305]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16306]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16307]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16306]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16308]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16307]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16309]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16308]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16309]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16310]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16311]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16310]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16312]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16311]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16313]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16312]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16313]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16314]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16315]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16314]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16316]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16316]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16317]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16315]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16318]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16317]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16319]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16318]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16320]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16319]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16321]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16320]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16322]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16321]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16323]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16322]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16324]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16323]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16325]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16324]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16326]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16325]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16327]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16326]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16328]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16327]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16329]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16329]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16330]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16330]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16328]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16331]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16332]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16331]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16333]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16332]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16334]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16333]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16335]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16334]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16335]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16336]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16337]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16336]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16338]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16337]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16339]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16339]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16340]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16338]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16341]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16340]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16342]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16341]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16343]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16342]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16344]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16343]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16345]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16344]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16346]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16345]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16347]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16346]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16348]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16347]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16349]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16348]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16350]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16349]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16351]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16350]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16352]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16351]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16353]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16352]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16354]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16353]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16355]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16355]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16356]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16356]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16357]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16357]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16358]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16354]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16359]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16358]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16360]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16359]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16361]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16360]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16361]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16363]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16362]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16363]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16364]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16364]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16365]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16362]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16366]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16365]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16367]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16366]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16368]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16367]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16369]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16368]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16370]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16369]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16371]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16370]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16371]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16372]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16373]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16372]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16374]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16373]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16375]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16374]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16375]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16376]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16377]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16376]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16378]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16377]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16379]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16378]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16380]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16380]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16381]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16381]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16382]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16379]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16382]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16383]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16384]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16383]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16385]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16384]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16386]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16385]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16387]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16386]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16388]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16388]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16389]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16387]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16390]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16389]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16391]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16390]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16392]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16391]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16393]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16392]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16394]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16393]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16395]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16394]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16396]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16395]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16397]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16396]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16398]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16397]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16399]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16398]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16400]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16399]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16401]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16400]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16402]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16401]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16403]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16402]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16404]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16403]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16405]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16404]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16406]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16405]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16407]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16406]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16408]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16407]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16409]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16409]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16410]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16410]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16411]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16411]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16412]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16412]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16413]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16408]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16414]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16413]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16415]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16414]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16416]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16415]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16417]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16416]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16418]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16417]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16419]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16418]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16420]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16419]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16421]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16420]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16422]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16421]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16423]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16422]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16424]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16423]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16425]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16424]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16426]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16425]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16427]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16426]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16428]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16427]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16429]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16428]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16430]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16429]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16431]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16430]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16432]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16431]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16433]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16432]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16434]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16433]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16435]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16435]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16434]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16436]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16437]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16436]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16438]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16437]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16439]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16438]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16440]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16440]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16441]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16441]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16442]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16442]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16443]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16439]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16443]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16444]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16444]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16445]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16446]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16445]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16447]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16446]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16448]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16447]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16449]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16448]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16450]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16449]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16451]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16450]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16452]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16451]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16453]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16452]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16454]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16453]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16455]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16454]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16456]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16455]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16457]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16457]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16458]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16456]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16459]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16458]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16460]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16459]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16461]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16460]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16462]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16461]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16462]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16463]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16464]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16463]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16465]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16464]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16466]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16465]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16467]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16467]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16468]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16468]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16469]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16466]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16470]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16469]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16471]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16470]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16472]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16471]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16473]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16472]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16474]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16473]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16475]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16474]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16476]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16475]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16477]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16476]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16478]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16477]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16479]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16478]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16479]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16480]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16481]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16480]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16482]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16482]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16483]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16481]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16484]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16483]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16485]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16484]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16485]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16486]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16487]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16486]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16488]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16487]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16489]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16488]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16489]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16490]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16491]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16490]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16492]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16491]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16493]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16492]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16494]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16494]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16495]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16495]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16496]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16493]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16497]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16496]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16498]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16497]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16499]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16498]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16500]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16499]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16501]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16500]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16501]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16502]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16503]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16502]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16504]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16503]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16505]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16504]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16506]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16505]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16507]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16506]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16508]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16507]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16509]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16509]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16510]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16508]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16511]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16511]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16512]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16510]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16513]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16513]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16514]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16512]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16515]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16515]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16516]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16514]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16517]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16516]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16518]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16517]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16519]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16519]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16520]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16520]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16521]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16521]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16522]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16518]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16523]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16522]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16524]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16523]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16525]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16524]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16526]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16525]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16527]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16526]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16528]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16527]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16529]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16528]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16530]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16529]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16531]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16530]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16532]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16532]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16533]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16531]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16534]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16533]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16535]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16534]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16536]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16535]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16537]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16536]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16538]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16537]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16539]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16538]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16540]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16539]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16541]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16540]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16542]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16541]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16543]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16542]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16544]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16543]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16545]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16544]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16546]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16545]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16547]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16546]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16548]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16547]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16549]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16549]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16550]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16550]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16551]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16551]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16552]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16552]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16553]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16548]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16554]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16553]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16555]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16554]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16556]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16555]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16557]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16556]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16558]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16558]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16557]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16559]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16560]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16559]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16561]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16560]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16562]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16561]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16563]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16562]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16564]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16563]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16565]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16564]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16565]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16566]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16567]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16566]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16568]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16567]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16569]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16568]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16570]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16569]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16571]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16570]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16572]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16571]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16573]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16572]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16574]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16573]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16575]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16574]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16576]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16575]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16577]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16576]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16578]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16578]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16579]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16579]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16580]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16577]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16580]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16581]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16582]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16581]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16582]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16583]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16584]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16583]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16585]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16584]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16586]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16585]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16587]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16586]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16588]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16587]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16589]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16588]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16590]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16589]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16591]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16590]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16592]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16591]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16593]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16592]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16594]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16593]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16595]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16594]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16595]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16596]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16597]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16596]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16598]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16597]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16599]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16598]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16600]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16599]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16601]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16600]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16602]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16602]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16603]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16601]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16604]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16603]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16605]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16604]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16606]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16605]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16607]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16607]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16608]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16608]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16609]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16609]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16610]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16606]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16611]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16610]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16612]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16611]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16613]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16612]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16614]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16613]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16615]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16614]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16616]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16615]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16616]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16617]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16618]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16617]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16618]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16619]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16620]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16619]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16621]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16620]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16622]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16621]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16623]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16623]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16624]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16622]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16625]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16624]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16626]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16625]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16627]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16626]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16628]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16627]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16629]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16628]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16630]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16629]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16631]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16630]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16632]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16631]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16633]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16632]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16634]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16633]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16635]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16635]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16636]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16636]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16637]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16637]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16634]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16638]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16639]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16638]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16640]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16639]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16641]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16640]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16642]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16641]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16643]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16642]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16644]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16643]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16645]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16644]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16645]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16646]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16647]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16646]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16648]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16648]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16649]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16647]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16650]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16649]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16651]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16650]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16652]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16651]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16653]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16652]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16654]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16653]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16655]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16654]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16656]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16655]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16656]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16657]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16658]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16658]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16659]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16657]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16660]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16659]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16661]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16660]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16662]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16662]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16663]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16663]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16664]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16664]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16665]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16661]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16666]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16665]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16667]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16666]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16668]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16667]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16669]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16669]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16670]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16668]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16671]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16670]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16672]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16672]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16671]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16673]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16674]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16673]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16675]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16674]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16676]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16675]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16677]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16676]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16678]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16677]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16679]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16678]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16680]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16679]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16681]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16680]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16682]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16681]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16683]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16682]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16683]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16684]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16685]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16684]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16686]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16685]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16687]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16686]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16688]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16687]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16689]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16688]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16690]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16689]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16691]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16690]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16692]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16691]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16693]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16693]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16694]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16692]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16695]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16694]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16696]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16695]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16697]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16696]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16698]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16697]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16699]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16698]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16699]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16700]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16701]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16700]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16702]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16701]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16703]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16702]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16703]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16704]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16705]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16704]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16706]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16705]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16707]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16706]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16708]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16707]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16709]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16708]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16710]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16709]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16711]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16710]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16712]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16711]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16713]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16712]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16714]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16713]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16715]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16714]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16716]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16715]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16717]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16716]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16718]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16718]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16719]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16717]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16720]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16719]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16721]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16721]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16722]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16722]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16723]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16723]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16724]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16720]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16725]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16724]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16726]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16725]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16727]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16726]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16728]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16727]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16729]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16729]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16730]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16728]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16731]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16730]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16732]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16731]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16733]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16732]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16734]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16733]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16735]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16734]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16736]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16735]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16737]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16736]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16738]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16737]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16739]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16738]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16740]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16739]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16741]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16740]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16742]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16741]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16743]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16743]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16744]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16742]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16745]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16744]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16746]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16745]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16747]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16746]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16747]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16748]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16749]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16748]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16750]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16750]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16751]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16751]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16752]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16752]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16753]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16749]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16754]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16753]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16755]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16754]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16755]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16756]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16757]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16756]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16758]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16757]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16759]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16758]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16760]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16759]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16761]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16760]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16762]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16761]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16763]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16762]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16764]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16763]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16765]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16765]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16766]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16764]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16767]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16766]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16768]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16767]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16769]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16768]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16770]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16769]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16771]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16770]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16772]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16771]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16773]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16772]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16774]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16773]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16775]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16774]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16775]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16776]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16777]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16776]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16778]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16777]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16779]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16778]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16780]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16780]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16781]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16781]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16782]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16782]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16783]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16779]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16784]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16783]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16785]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16784]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16786]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16785]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16787]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16787]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16788]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16786]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16789]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16789]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16790]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16788]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16791]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16791]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16792]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16792]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16793]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16790]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16794]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16794]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16795]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16793]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16795]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16796]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16797]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16796]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16798]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16797]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16799]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16798]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16799]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16800]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16801]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16800]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16802]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16801]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16803]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16802]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16803]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16804]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16805]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16804]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16806]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16805]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16807]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16806]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16808]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16808]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16809]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16807]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16809]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16810]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16811]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16810]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16812]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16811]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16813]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16812]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16814]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16813]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16815]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16814]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16816]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16815]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16817]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16816]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16818]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16817]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16819]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16818]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16820]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16819]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16821]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16820]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16822]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16821]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16823]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16822]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16824]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16823]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16825]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16824]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16826]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16825]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16827]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16826]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16828]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16827]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16829]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16828]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16830]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16829]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16831]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16830]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16832]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16831]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16833]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16832]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16834]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16833]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16835]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16835]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16836]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16836]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16837]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16837]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16838]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16834]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16839]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16839]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16840]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16838]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16841]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16841]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16842]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16842]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16843]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16840]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16844]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16843]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16845]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16844]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16846]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16845]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16847]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16846]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16848]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16847]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16849]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16848]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16850]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16849]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16851]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16850]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16852]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16851]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16853]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16852]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16854]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16853]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16855]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16854]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16856]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16855]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16857]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16856]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16858]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16857]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16859]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16858]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16860]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16860]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16861]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16859]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16862]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16862]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16863]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16861]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16864]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16863]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16865]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16865]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16866]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16866]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16867]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16867]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16868]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16868]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16869]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16864]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16869]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16870]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16871]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16870]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16872]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16871]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16873]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16872]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16874]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16873]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16875]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16874]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16876]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16875]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16877]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16876]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16878]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16877]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16879]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16879]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16880]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16878]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16881]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16880]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16881]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16882]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16883]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16882]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16884]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16883]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16885]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16885]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16886]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16884]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16886]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16887]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16888]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16887]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16889]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16888]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16890]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16889]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16891]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16891]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16892]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16890]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16893]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16893]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16894]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16894]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16895]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16892]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16896]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16895]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16897]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16896]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16898]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16897]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16899]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16898]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16900]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16899]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16901]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16900]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16902]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16901]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16903]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16902]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16904]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16903]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16905]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16905]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16906]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16904]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16906]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16908]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16907]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16908]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16907]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16909]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16910]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16910]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16911]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16909]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16912]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16911]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16913]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16912]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16913]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16914]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16915]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16914]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16916]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16915]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16917]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16916]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16918]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16917]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16919]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16918]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16920]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16919]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16921]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16920]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16922]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16922]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16923]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16923]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16924]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16924]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16925]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16925]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16926]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16921]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16926]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16927]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16928]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16927]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16928]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16929]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16930]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16930]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16931]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16929]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16931]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16932]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16933]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16932]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16934]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16933]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16935]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16934]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16936]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16935]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16937]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16936]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16938]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16937]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16939]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16938]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16940]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16940]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16941]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16939]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16942]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16941]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16943]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16942]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16944]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16943]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16945]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16944]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16945]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16946]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16947]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16946]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16948]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16948]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16949]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16947]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16950]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16949]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16951]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16951]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16952]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16952]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16953]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16950]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16953]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16954]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16955]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16954]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16956]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16955]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16957]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16957]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16958]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16956]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16958]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16959]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16960]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16959]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16961]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16960]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16962]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16961]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16963]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16962]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16964]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16963]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16965]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16964]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16966]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16965]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16967]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16966]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16967]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16968]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16969]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16968]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16970]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16970]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16971]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16969]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16972]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16971]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16973]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16972]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16973]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 16974]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16975]]} + {:process 3 :type :fail :f :txn :value [[:append 4 16974]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16976]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16975]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16977]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16976]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 16978]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16977]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16979]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16979]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16980]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16980]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 16981]]} + {:process 2 :type :fail :f :txn :value [[:append 4 16981]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16982]]} + {:process 3 :type :fail :f :txn :value [[:append 1 16978]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16983]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16982]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 16984]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16983]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 16985]]} + {:process 2 :type :fail :f :txn :value [[:append 1 16984]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16986]]} + {:process 3 :type :fail :f :txn :value [[:append 6 16985]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16987]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16986]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16987]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 16988]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 16989]]} + {:process 2 :type :fail :f :txn :value [[:append 2 16988]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16990]]} + {:process 3 :type :fail :f :txn :value [[:append 3 16989]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 16991]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16990]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 16991]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 16992]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 16993]]} + {:process 2 :type :fail :f :txn :value [[:append 7 16992]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 16994]]} + {:process 3 :type :fail :f :txn :value [[:append 0 16993]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 16995]]} + {:process 2 :type :fail :f :txn :value [[:append 6 16994]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 16996]]} + {:process 2 :type :fail :f :txn :value [[:append 0 16996]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 16997]]} + {:process 3 :type :fail :f :txn :value [[:append 7 16995]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 16998]]} + {:process 2 :type :fail :f :txn :value [[:append 3 16997]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 16999]]} + {:process 3 :type :fail :f :txn :value [[:append 5 16998]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17000]]} + {:process 2 :type :fail :f :txn :value [[:append 5 16999]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17001]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17000]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17002]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17001]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17003]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17002]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17004]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17003]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17005]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17004]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17006]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17005]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17007]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17006]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17008]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17007]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17009]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17009]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17010]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17010]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17011]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17011]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17012]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17008]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17013]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17013]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17014]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17012]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17015]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17014]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17016]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17015]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17017]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17016]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17018]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17017]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17019]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17018]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17020]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17019]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17021]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17020]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17022]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17021]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17023]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17023]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17024]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17022]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17024]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17025]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17026]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17025]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17027]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17026]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17028]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17027]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17029]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17028]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17030]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17029]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17031]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17030]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17031]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17032]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17033]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17032]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17034]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17033]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17035]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17034]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17036]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17035]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17037]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17036]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17038]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17038]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17039]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17039]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17040]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17040]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17041]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17041]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17042]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17037]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17043]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17042]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17044]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17043]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17045]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17044]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17046]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17045]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17047]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17046]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17048]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17047]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17049]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17048]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17050]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17049]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17051]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17050]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17051]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17052]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17053]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17052]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17054]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17053]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17055]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17054]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17055]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17056]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17057]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17056]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17058]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17057]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17059]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17058]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17059]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17060]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17061]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17060]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17062]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17061]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17063]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17062]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17063]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17064]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17065]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17064]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17066]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17066]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17067]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17065]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17068]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17067]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17069]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17069]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17070]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17070]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17068]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17071]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17072]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17071]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17073]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17072]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17074]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17073]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17075]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17074]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17076]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17075]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17077]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17076]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17078]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17077]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17079]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17078]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17080]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17079]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17081]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17080]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17082]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17081]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17083]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17082]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17084]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17083]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17084]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17085]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17086]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17085]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17087]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17086]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17088]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17087]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17089]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17088]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17089]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17090]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17091]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17090]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17092]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17092]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17093]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17091]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17094]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17093]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17095]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17095]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17096]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17094]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17097]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17096]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17098]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17097]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17099]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17098]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17099]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17100]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17101]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17100]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17102]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17101]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17103]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17102]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17103]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17104]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17105]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17104]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17106]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17105]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17107]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17106]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17107]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17108]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17109]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17108]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17110]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17109]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17111]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17110]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17111]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17112]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17113]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17112]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17114]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17114]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17115]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17113]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17116]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17115]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17117]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17116]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17118]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17117]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17119]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17118]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17120]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17119]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17121]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17120]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17122]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17121]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17123]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17123]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17124]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17124]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17125]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17125]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17126]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17122]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17127]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17126]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17128]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17127]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17128]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17129]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17130]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17129]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17130]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17131]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17132]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17131]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17133]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17132]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17134]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17133]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17135]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17135]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17136]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17134]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17137]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17136]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17138]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17138]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17139]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17137]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17140]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17139]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17141]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17140]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17142]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17141]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17143]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17142]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17144]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17143]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17145]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17144]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17145]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17146]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17147]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17146]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17148]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17147]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17149]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17148]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17150]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17150]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17151]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17151]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17149]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17152]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17153]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17152]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17154]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17153]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17155]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17154]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17155]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17156]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17157]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17156]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17158]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17157]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17159]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17158]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17159]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17160]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17161]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17160]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17162]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17162]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17163]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17161]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17164]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17163]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17165]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17164]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17166]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17165]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17167]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17166]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17168]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17167]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17169]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17168]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17170]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17169]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17171]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17170]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17172]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17171]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17173]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17172]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17174]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17173]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17175]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17174]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17176]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17175]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17177]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17176]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17178]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17177]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17179]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17179]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17180]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17180]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17181]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17181]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17182]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17178]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17183]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17183]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17184]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17184]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17185]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17182]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17185]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17186]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17187]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17187]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17188]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17186]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17189]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17188]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17190]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17189]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17191]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17190]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17192]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17191]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17193]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17192]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17194]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17193]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17195]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17194]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17196]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17195]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17197]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17196]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17198]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17197]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17199]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17198]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17200]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17199]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17201]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17200]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17202]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17201]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17203]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17202]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17204]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17203]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17205]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17205]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17206]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17206]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17207]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17207]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17208]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17204]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17209]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17209]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17210]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17208]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17211]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17210]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17212]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17211]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17213]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17213]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17214]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17212]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17215]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17214]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17215]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17216]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17217]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17216]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17218]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17217]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17219]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17218]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17219]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17220]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17221]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17220]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17222]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17221]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17223]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17222]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17223]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17224]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17225]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17224]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17226]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17225]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17227]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17226]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17227]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17228]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17229]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17228]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17230]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17229]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17231]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17230]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17232]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17232]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17233]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17233]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17234]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17231]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17235]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17234]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17236]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17235]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17237]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17236]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17238]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17237]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17239]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17238]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17240]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17239]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17241]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17241]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17240]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17242]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17243]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17242]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17244]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17243]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17245]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17244]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17246]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17245]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17246]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17247]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17248]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17247]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17249]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17248]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17250]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17249]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17251]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17250]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17252]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17251]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17253]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17252]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17254]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17253]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17255]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17254]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17256]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17255]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17257]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17256]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17258]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17258]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17259]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17257]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17260]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17260]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17261]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17259]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17262]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17261]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17263]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17262]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17263]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17264]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17265]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17264]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17266]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17265]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17267]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17266]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17267]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17268]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17269]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17268]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17270]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17269]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17271]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17270]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17271]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17272]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17273]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17272]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17274]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17273]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17275]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17274]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17275]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17276]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17277]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17276]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17278]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17277]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17279]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17278]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17279]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17280]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17281]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17280]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17282]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17281]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17283]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17282]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17284]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17284]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17285]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17285]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17286]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17283]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17287]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17286]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17288]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17287]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17289]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17288]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17289]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17290]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17291]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17291]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17292]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17290]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17293]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17292]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17294]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17293]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17295]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17294]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17296]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17295]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17297]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17296]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17298]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17298]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17299]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17297]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17299]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17301]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17300]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17301]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17302]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17300]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17303]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17302]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17304]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17303]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17305]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17304]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17306]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17305]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17307]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17306]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17308]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17307]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17309]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17309]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17310]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17310]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17311]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17311]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17312]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17312]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17313]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17313]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17314]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17314]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17308]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17315]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17316]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17316]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17317]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17315]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17318]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17317]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17318]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17319]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17320]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17319]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17321]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17320]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17322]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17321]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17323]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17323]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17324]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17322]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17324]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17325]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17326]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17325]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17327]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17326]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17328]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17327]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17329]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17328]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17329]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17330]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17331]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17330]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17332]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17331]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17333]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17332]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17333]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17335]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17334]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17335]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17336]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17334]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17337]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17336]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17338]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17337]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17338]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17340]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17339]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17340]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17341]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17339]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17342]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17341]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17343]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17342]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17343]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17344]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17345]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17345]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17346]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17344]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17347]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17346]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17348]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17347]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17348]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17349]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17350]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17349]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17351]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17350]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17352]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17351]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17353]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17352]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17353]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17354]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17354]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17355]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17356]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17355]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17357]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17356]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17358]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17357]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17359]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17359]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17360]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17360]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17361]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17361]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17362]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17358]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17362]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17363]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17364]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17363]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17365]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17364]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17366]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17365]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17367]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17366]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17368]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17367]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17369]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17368]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17370]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17369]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17371]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17370]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17372]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17371]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17373]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17372]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17374]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17373]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17375]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17374]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17376]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17375]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17377]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17376]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17377]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17378]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17379]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17378]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17380]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17379]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17381]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17380]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17381]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17382]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17383]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17382]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17384]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17383]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17385]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17384]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17385]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17386]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17387]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17386]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17388]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17388]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17387]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17389]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17390]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17389]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17391]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17390]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17392]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17391]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17393]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17393]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17394]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17392]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17394]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17395]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17396]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17395]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17397]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17396]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17398]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17397]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17399]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17399]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17400]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17398]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17400]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17401]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17402]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17401]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17403]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17402]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17404]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17403]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17405]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17404]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17405]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17406]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17407]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17406]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17408]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17408]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17409]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17407]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17410]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17409]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17411]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17411]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17410]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17412]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17413]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17412]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17414]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17413]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17415]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17414]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17416]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17415]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17416]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17417]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17418]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17417]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17419]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17419]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17420]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17420]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17421]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17418]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17422]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17422]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17421]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17423]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17424]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17423]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17425]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17424]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17426]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17425]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17427]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17427]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17428]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17426]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17428]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17429]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17430]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17429]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17431]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17430]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17432]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17432]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17433]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17433]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17434]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17434]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17431]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17436]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17435]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17435]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17437]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17436]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17438]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17437]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17439]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17438]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17440]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17439]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17441]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17440]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17442]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17441]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17443]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17442]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17444]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17443]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17445]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17445]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17444]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17446]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17447]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17446]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17448]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17447]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17449]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17448]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17449]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17450]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17451]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17450]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17452]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17451]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17453]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17452]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17453]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17454]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17455]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17454]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17456]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17455]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17457]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17456]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17457]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17458]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17459]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17458]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17460]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17459]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17461]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17460]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17462]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17462]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17463]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17463]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17464]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17464]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17465]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17461]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17466]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17466]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17467]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17465]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17468]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17467]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17469]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17469]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17470]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17470]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17468]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17471]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17472]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17471]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17473]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17472]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17473]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17474]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17475]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17475]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17476]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17474]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17477]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17476]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17478]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17477]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17478]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17479]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17480]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17479]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17481]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17480]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17481]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17483]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17482]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17482]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17484]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17484]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17485]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17483]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17485]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17486]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17487]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17486]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17488]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17487]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17489]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17488]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17490]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17489]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17491]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17490]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17492]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17491]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17493]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17492]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17494]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17493]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17495]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17494]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17496]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17495]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17497]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17497]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17498]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17496]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17499]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17498]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17500]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17499]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17501]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17500]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17502]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17501]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17503]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17502]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17504]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17503]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17505]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17504]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17506]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17505]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17507]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17506]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17508]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17507]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17509]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17508]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17510]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17509]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17511]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17510]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17512]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17512]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17513]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17513]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17514]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17514]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17515]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17511]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17516]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17515]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17517]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17516]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17518]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17517]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17519]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17518]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17520]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17520]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17521]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17519]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17522]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17521]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17523]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17522]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17523]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17524]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17525]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17524]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17526]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17525]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17527]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17526]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17527]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17528]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17529]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17528]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17530]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17529]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17531]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17530]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17531]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17532]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17533]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17532]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17534]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17533]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17535]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17534]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17535]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17536]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17537]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17536]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17538]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17537]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17539]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17538]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17540]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17540]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17541]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17541]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17542]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17542]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17543]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17539]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17544]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17544]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17545]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17543]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17545]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17546]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17547]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17546]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17548]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17547]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17549]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17548]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17549]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17550]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17551]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17550]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17552]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17551]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17553]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17552]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17553]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17554]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17555]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17554]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17556]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17555]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17557]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17556]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17557]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17558]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17559]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17558]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17560]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17559]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17561]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17560]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17562]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17561]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17563]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17562]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17564]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17563]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17565]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17565]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17566]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17564]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17567]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17567]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17568]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17568]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17569]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17566]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17570]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17569]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17571]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17570]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17572]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17571]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17573]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17572]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17574]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17573]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17575]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17574]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17576]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17575]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17577]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17576]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17578]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17577]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17579]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17578]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17580]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17579]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17581]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17580]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17582]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17581]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17582]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17583]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17584]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17583]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17584]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17585]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17586]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17585]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17587]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17586]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17588]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17587]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17589]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17588]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17589]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17590]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17591]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17590]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17592]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17591]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17593]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17592]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17594]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17594]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17595]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17595]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17596]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17593]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17596]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17597]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17598]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17597]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17599]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17598]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17600]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17599]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17601]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17600]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17602]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17601]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17603]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17602]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17604]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17603]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17605]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17604]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17606]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17605]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17607]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17606]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17608]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17607]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17609]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17608]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17610]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17609]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17611]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17610]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17611]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17612]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17613]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17612]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17614]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17613]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17615]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17614]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17616]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17615]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17617]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17616]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17618]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17617]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17619]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17618]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17619]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17620]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17621]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17620]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17622]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17621]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17623]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17622]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17624]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17623]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17625]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17624]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17626]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17625]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17627]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17626]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17627]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17628]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17629]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17628]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17630]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17629]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17631]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17630]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17631]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17632]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17633]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17632]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17634]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17633]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17635]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17634]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17635]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17636]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17637]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17636]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17638]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17637]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17639]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17638]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17640]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17639]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17640]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17641]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17642]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17641]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17643]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17642]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17644]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17644]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17645]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17643]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17646]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17646]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17647]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17647]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17648]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17648]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17649]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17645]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17650]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17649]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17651]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17650]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17652]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17651]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17653]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17652]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17654]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17653]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17655]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17654]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17656]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17655]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17657]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17656]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17658]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17657]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17659]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17658]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17660]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17659]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17661]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17660]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17662]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17661]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17663]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17662]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17664]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17663]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17665]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17664]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17666]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17665]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17667]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17667]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17668]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17666]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17669]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17668]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17670]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17669]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17671]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17670]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17672]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17671]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17673]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17672]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17674]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17673]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17675]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17674]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17676]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17676]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17677]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17677]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17678]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17678]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17679]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17675]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17679]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17680]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17681]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17680]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17682]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17681]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17683]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17682]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17684]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17683]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17685]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17684]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17686]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17685]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17687]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17686]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17688]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17687]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17689]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17688]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17690]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17689]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17691]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17691]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17692]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17690]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17693]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17692]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17694]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17693]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17695]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17694]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17696]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17695]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17696]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17697]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17698]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17697]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17698]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17699]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17700]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17699]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17701]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17700]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17702]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17701]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17703]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17702]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17704]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17703]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17705]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17704]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17706]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17705]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17707]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17707]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17708]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17708]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17709]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17709]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17710]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17710]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17711]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17706]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17712]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17711]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17713]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17712]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17714]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17713]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17715]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17714]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17716]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17715]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17717]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17716]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17718]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17717]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17719]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17718]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17720]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17719]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17721]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17720]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17722]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17721]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17723]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17722]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17724]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17723]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17725]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17724]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17726]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17725]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17727]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17726]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17728]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17727]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17729]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17728]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17730]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17729]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17731]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17730]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17732]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17731]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17733]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17732]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17734]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17734]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17735]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17733]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17736]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17736]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17737]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17735]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17738]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17737]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17738]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17739]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17740]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17739]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17741]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17740]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17742]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17741]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17743]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17742]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17743]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17744]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17745]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17744]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17746]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17745]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17747]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17746]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17748]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17747]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17748]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17749]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17750]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17750]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17751]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17751]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17752]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17749]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17753]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17752]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17753]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17754]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17755]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17754]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17756]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17755]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17757]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17756]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17758]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17757]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17759]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17759]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17760]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17760]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17761]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17761]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17762]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17758]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17762]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17763]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17764]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17763]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17765]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17764]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17766]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17765]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17767]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17766]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17768]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17767]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17769]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17768]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17770]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17769]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17771]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17770]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17771]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17772]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17773]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17772]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17774]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17773]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17775]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17774]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17776]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17775]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17777]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17776]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17778]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17777]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17779]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17778]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17780]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17779]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17780]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17781]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17782]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17781]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17783]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17782]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17784]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17783]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17785]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17784]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17786]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17785]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17787]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17786]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17788]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17788]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17789]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17789]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17790]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17790]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17791]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17787]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17792]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17791]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17793]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17792]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17794]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17793]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17795]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17794]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17796]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17795]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17797]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17797]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17798]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17796]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17799]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17798]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17800]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17799]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17801]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17801]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17802]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17800]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17802]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17803]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17804]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17803]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17805]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17804]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17806]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17805]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17807]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17806]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17808]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17807]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17809]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17808]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17810]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17809]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17811]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17810]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17812]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17811]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17813]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17812]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17814]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17813]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17815]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17814]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17816]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17816]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17817]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17817]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17818]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17815]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17819]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17818]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17820]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17819]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17821]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17820]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17821]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17822]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17823]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17823]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17824]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17822]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17825]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17824]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17826]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17825]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17826]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17827]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17828]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17827]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17829]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17828]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17830]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17829]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17831]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17830]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17832]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17831]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17833]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17832]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17834]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17834]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17835]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17833]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17836]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17835]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17837]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17836]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17838]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17837]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17839]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17838]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17840]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17839]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17841]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17840]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17842]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17841]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17843]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17843]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17844]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17844]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17845]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17845]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17846]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17846]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17847]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17842]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17848]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17847]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17849]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17848]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17850]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17849]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17851]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17850]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17852]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17851]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17853]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17852]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17854]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17853]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17855]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17855]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17856]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17854]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17857]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17857]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17858]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17856]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17858]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17859]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17860]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17859]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17861]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17860]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17862]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17861]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17863]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17862]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17863]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17864]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17865]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17864]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17866]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17865]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17867]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17866]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17867]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17868]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17869]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17868]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17870]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17869]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17871]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17871]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17872]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17872]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17873]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17873]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17870]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17874]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17875]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17874]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17876]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17875]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17877]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17876]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17878]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17877]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17879]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17878]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17880]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17880]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17881]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17879]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17882]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17881]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17883]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17882]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17884]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17883]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17885]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17884]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17886]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17885]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17887]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17886]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17888]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17887]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17889]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17888]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17890]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17889]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17891]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17890]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17892]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17891]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17893]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17892]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17894]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17893]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17895]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17894]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17896]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17895]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17897]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17896]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17898]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17897]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17899]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17899]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17900]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17900]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17901]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17901]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17902]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17898]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17903]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17902]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17904]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17904]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17905]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17903]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17906]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17905]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17907]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17906]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17908]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17907]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17909]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17908]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17910]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17909]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17911]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17910]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17912]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17911]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17913]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17912]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17914]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17913]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17915]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17914]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17916]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17915]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17917]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17916]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17918]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17917]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17919]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17918]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17920]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17919]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17921]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17920]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17922]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17921]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17923]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17922]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17924]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17923]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17924]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17925]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17926]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17925]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17927]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17926]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17928]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17928]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17929]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17929]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17930]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17930]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17931]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17927]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17932]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17931]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17933]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17932]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17934]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17933]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17935]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17934]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17936]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17935]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17937]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17936]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17938]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17937]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17939]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17938]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17940]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17939]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17941]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17940]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17942]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17941]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17943]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17942]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17944]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17943]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17945]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17944]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17946]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17945]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17947]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17946]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17948]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17947]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17949]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17948]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17950]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17949]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17951]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17951]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17952]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17950]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17953]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17952]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17953]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17954]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17955]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17954]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17956]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17955]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17957]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17956]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17958]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17958]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17959]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17959]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17960]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17960]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17961]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17957]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17961]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17962]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17963]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17962]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17964]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17963]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17965]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17964]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17966]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17965]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17967]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17966]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17968]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17967]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17969]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17968]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17970]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17969]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17971]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17970]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17972]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17971]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17973]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17973]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17972]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17974]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 17975]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17974]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17976]]} + {:process 3 :type :fail :f :txn :value [[:append 3 17975]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17977]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17976]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17977]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17978]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 17979]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17978]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17980]]} + {:process 3 :type :fail :f :txn :value [[:append 0 17979]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17981]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17980]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17981]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 17982]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 17983]]} + {:process 3 :type :fail :f :txn :value [[:append 5 17982]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17984]]} + {:process 2 :type :fail :f :txn :value [[:append 1 17983]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17985]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17984]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 17986]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17985]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 17987]]} + {:process 2 :type :fail :f :txn :value [[:append 2 17987]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17988]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17988]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 17989]]} + {:process 2 :type :fail :f :txn :value [[:append 7 17989]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17990]]} + {:process 3 :type :fail :f :txn :value [[:append 2 17986]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 17991]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17990]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 17992]]} + {:process 3 :type :fail :f :txn :value [[:append 1 17991]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 17993]]} + {:process 2 :type :fail :f :txn :value [[:append 0 17992]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 17994]]} + {:process 3 :type :fail :f :txn :value [[:append 7 17993]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 17995]]} + {:process 2 :type :fail :f :txn :value [[:append 3 17994]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 17996]]} + {:process 3 :type :fail :f :txn :value [[:append 6 17995]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 17997]]} + {:process 2 :type :fail :f :txn :value [[:append 5 17996]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 17998]]} + {:process 2 :type :fail :f :txn :value [[:append 4 17998]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 17999]]} + {:process 3 :type :fail :f :txn :value [[:append 4 17997]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18000]]} + {:process 2 :type :fail :f :txn :value [[:append 6 17999]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18001]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18000]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18002]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18001]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18003]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18002]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18004]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18003]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18005]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18004]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18006]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18005]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18007]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18006]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18008]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18007]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18009]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18008]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18010]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18009]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18011]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18010]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18012]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18011]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18013]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18012]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18014]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18013]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18015]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18014]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18016]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18015]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18017]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18017]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18018]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18018]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18019]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18019]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18020]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18016]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18021]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18020]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18022]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18021]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18023]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18022]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18023]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18024]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18025]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18024]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18026]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18025]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18027]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18026]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18028]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18027]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18029]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18028]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18030]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18029]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18031]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18030]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18031]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18032]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18033]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18032]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18034]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18033]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18035]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18034]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18035]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18036]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18037]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18037]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18036]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18038]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18039]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18039]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18038]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18040]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18041]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18040]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18042]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18042]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18043]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18041]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18044]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18043]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18045]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18045]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18046]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18046]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18047]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18047]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18048]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18044]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18049]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18048]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18050]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18049]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18051]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18050]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18051]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18052]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18053]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18052]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18054]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18053]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18055]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18054]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18056]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18055]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18057]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18056]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18058]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18057]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18059]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18058]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18059]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18060]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18061]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18060]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18062]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18061]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18063]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18062]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18063]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18064]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18065]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18064]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18066]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18065]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18067]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18067]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18068]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18066]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18068]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18069]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18070]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18069]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18071]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18070]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18072]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18072]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18073]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18073]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18074]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18074]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18075]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18071]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18076]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18075]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18077]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18076]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18078]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18077]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18079]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18078]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18080]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18079]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18081]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18080]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18082]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18081]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18083]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18082]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18084]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18083]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18085]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18084]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18086]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18085]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18087]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18086]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18088]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18087]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18089]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18088]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18090]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18089]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18091]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18091]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18092]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18090]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18093]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18092]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18094]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18093]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18094]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18095]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18096]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18095]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18097]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18096]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18098]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18097]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18099]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18098]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18100]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18099]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18101]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18100]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18102]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18101]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18103]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18103]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18104]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18104]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18105]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18105]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18106]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18102]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18107]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18106]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18108]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18107]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18109]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18108]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18109]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18111]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18110]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18111]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18112]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18110]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18113]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18112]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18114]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18113]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18115]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18114]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18116]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18115]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18117]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18116]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18118]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18117]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18119]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18118]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18120]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18119]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18121]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18120]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18122]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18121]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18122]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18123]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18124]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18123]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18125]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18124]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18126]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18125]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18127]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18126]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18128]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18127]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18129]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18128]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18130]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18129]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18131]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18131]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18132]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18132]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18133]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18133]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18134]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18134]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18135]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18130]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18136]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18135]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18137]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18136]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18138]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18137]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18139]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18138]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18140]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18139]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18141]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18140]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18142]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18141]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18143]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18142]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18144]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18143]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18145]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18144]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18146]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18145]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18147]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18146]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18148]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18147]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18149]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18148]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18150]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18149]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18151]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18150]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18151]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18152]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18153]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18152]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18153]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18154]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18155]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18154]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18156]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18155]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18157]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18156]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18158]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18157]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18159]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18158]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18160]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18160]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18161]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18159]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18162]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18161]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18163]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18163]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18164]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18164]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18165]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18165]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18166]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18162]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18167]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18166]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18168]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18167]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18169]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18168]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18169]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18170]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18171]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18170]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18172]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18171]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18173]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18172]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18174]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18173]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18175]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18174]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18176]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18175]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18177]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18176]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18178]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18177]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18179]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18178]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18180]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18180]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18181]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18179]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18182]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18181]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18183]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18182]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18184]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18183]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18185]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18184]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18186]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18185]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18187]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18186]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18188]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18187]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18188]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18189]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18190]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18189]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18191]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18191]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18192]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18192]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18193]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18193]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18194]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18190]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18195]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18194]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18196]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18195]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18197]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18196]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18198]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18197]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18199]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18198]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18200]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18199]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18201]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18201]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18202]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18200]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18202]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18203]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18204]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18203]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18205]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18204]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18206]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18205]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18207]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18206]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18208]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18207]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18208]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18209]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18210]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18209]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18211]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18210]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18212]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18211]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18213]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18212]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18214]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18213]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18215]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18214]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18216]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18215]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18217]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18216]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18218]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18217]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18219]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18219]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18220]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18220]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18221]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18221]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18222]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18218]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18223]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18222]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18224]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18223]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18225]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18224]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18226]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18226]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18227]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18225]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18228]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18227]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18229]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18228]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18230]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18229]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18231]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18230]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18232]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18231]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18233]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18232]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18234]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18233]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18235]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18234]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18236]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18235]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18237]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18236]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18238]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18237]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18239]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18238]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18240]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18239]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18241]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18240]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18242]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18241]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18243]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18242]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18244]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18243]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18245]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18244]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18246]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18245]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18247]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18246]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18248]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18247]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18249]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18249]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18248]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18250]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18251]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18250]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18252]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18251]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18253]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18252]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18253]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18254]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18255]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18254]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18256]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18255]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18257]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18256]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18258]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18257]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18259]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18258]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18260]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18259]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18261]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18260]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18261]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18262]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18263]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18262]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18264]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18263]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18265]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18265]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18264]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18266]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18267]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18266]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18268]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18267]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18269]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18268]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18270]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18269]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18271]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18270]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18272]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18271]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18273]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18272]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18274]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18273]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18275]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18275]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18276]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18276]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18274]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18278]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18277]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18278]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18279]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18277]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18280]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18279]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18281]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18280]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18281]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18282]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18283]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18282]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18284]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18283]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18285]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18284]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18285]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18286]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18287]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18286]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18288]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18287]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18289]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18288]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18289]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18290]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18291]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18290]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18292]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18291]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18293]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18292]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18293]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18294]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18295]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18294]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18296]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18295]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18297]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18296]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18297]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18298]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18299]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18298]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18300]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18300]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18301]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18299]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18302]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18301]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18303]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18303]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18304]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18304]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18305]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18305]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18306]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18306]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18307]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18307]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18308]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18302]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18309]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18308]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18310]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18309]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18311]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18310]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18312]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18311]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18313]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18312]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18314]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18313]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18315]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18314]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18315]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18316]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18317]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18316]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18318]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18317]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18319]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18318]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18320]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18319]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18321]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18320]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18321]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18323]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18322]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18323]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18324]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18322]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18324]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18326]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18325]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18326]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18327]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18325]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18328]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18327]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18329]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18328]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18330]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18330]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18331]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18331]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18332]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18329]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18333]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18332]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18334]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18333]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18335]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18334]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18336]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18335]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18337]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18336]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18338]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18337]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18339]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18338]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18339]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18340]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18341]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18340]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18342]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18341]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18343]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18342]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18344]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18343]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18345]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18344]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18346]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18345]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18347]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18346]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18348]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18347]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18349]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18348]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18350]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18350]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18351]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18349]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18352]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18351]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18353]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18352]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18354]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18353]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18355]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18354]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18356]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18355]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18357]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18356]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18358]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18357]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18359]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18359]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18360]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18360]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18361]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18361]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18362]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18358]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18363]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18362]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18364]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18363]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18365]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18364]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18366]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18365]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18367]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18366]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18367]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18368]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18369]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18368]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18370]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18370]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18371]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18369]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18372]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18371]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18373]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18372]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18374]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18373]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18375]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18374]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18376]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18375]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18377]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18376]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18378]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18377]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18379]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18378]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18380]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18379]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18381]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18380]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18382]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18381]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18383]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18382]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18384]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18383]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18385]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18384]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18386]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18385]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18387]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18386]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18388]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18387]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18389]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18389]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18390]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18390]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18391]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18391]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18392]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18388]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18393]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18393]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18394]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18394]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18395]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18395]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18396]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18392]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18397]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18396]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18398]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18397]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18399]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18398]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18400]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18399]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18401]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18400]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18402]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18401]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18403]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18402]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18404]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18403]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18405]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18404]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18406]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18405]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18407]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18406]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18408]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18407]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18409]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18408]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18410]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18409]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18411]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18410]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18412]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18411]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18413]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18412]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18414]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18413]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18415]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18415]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18416]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18416]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18417]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18417]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18418]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18418]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18419]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18414]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18420]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18419]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18421]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18420]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18422]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18421]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18423]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18422]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18424]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18423]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18425]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18424]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18426]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18425]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18427]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18426]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18428]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18427]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18429]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18428]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18430]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18429]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18431]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18430]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18432]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18431]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18433]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18432]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18434]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18433]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18435]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18435]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18434]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18436]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18437]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18436]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18438]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18437]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18439]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18438]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18440]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18439]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18441]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18440]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18442]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18441]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18443]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18443]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18444]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18442]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18445]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18445]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18446]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18446]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18447]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18444]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18447]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18448]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18449]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18448]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18450]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18449]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18451]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18450]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18452]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18451]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18453]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18452]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18454]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18453]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18455]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18454]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18456]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18455]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18457]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18456]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18458]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18457]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18459]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18458]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18460]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18459]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18461]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18460]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18462]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18461]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18463]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18462]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18464]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18463]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18465]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18464]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18466]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18466]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18467]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18465]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18468]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18467]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18469]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18468]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18470]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18470]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18471]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18471]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18472]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18472]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18473]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18469]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18473]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18474]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18475]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18475]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18476]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18474]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18477]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18476]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18478]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18477]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18479]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18478]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18480]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18479]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18481]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18480]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18482]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18481]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18483]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18482]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18484]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18483]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18485]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18484]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18485]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18486]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18487]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18486]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18488]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18488]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18489]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18489]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18490]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18487]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18491]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18491]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18492]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18490]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18493]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18492]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18494]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18493]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18495]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18494]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18496]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18495]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18497]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18496]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18498]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18497]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18499]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18498]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18499]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18500]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18501]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18501]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18502]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18502]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18503]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18503]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18504]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18504]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18505]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18505]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18506]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18506]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18507]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18500]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18508]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18507]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18509]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18508]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18509]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18510]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18511]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18510]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18512]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18511]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18513]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18512]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18514]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18513]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18515]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18514]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18516]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18515]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18517]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18517]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18518]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18516]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18519]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18518]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18520]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18519]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18521]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18520]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18522]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18521]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18523]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18522]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18524]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18523]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18525]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18524]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18525]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18526]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18527]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18526]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18528]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18527]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18529]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18528]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18529]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18530]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18531]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18530]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18532]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18532]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18531]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18533]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18534]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18533]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18535]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18535]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18536]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18536]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18537]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18537]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18538]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18538]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18539]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18534]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18539]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18540]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18541]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18540]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18542]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18541]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18543]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18542]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18544]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18543]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18545]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18544]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18546]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18545]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18547]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18546]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18548]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18547]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18548]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18549]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18550]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18549]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18551]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18550]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18551]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18552]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18553]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18552]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18554]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18554]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18555]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18553]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18556]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18555]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18557]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18556]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18558]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18557]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18559]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18558]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18560]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18559]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18561]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18560]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18561]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18562]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18563]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18562]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18564]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18564]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18565]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18565]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18566]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18566]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18567]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18563]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18568]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18567]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18569]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18568]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18570]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18569]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18571]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18570]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18572]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18571]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18573]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18572]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18574]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18573]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18575]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18574]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18576]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18575]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18577]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18577]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18578]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18576]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18579]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18578]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18580]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18579]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18581]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18580]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18581]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18582]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18583]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18582]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18584]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18583]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18585]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18584]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18585]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18586]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18587]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18586]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18588]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18587]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18589]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18588]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18589]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18590]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18591]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18590]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18592]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18591]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18593]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18592]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18594]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18594]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18595]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18593]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18596]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18595]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18596]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18597]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18598]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18597]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18599]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18598]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18600]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18599]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18601]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18600]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18602]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18601]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18603]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18603]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18604]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18602]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18605]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18604]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18606]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18605]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18606]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18607]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18608]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18607]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18609]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18608]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18610]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18609]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18611]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18610]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18611]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18612]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18613]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18612]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18614]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18613]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18615]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18614]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18616]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18616]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18617]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18617]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18618]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18618]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18619]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18615]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18619]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18620]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18621]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18620]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18622]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18621]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18623]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18622]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18624]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18623]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18625]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18624]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18626]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18625]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18627]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18627]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18628]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18626]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18629]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18628]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18630]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18629]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18631]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18630]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18631]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18632]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18633]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18632]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18634]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18633]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18635]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18634]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18636]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18635]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18637]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18636]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18638]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18637]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18639]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18638]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18639]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18640]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18641]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18640]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18642]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18641]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18643]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18642]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18643]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18644]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18645]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18644]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18646]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18646]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18647]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18647]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18648]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18648]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18649]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18645]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18650]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18649]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18651]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18650]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18652]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18651]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18653]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18652]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18654]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18653]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18655]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18654]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18656]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18655]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18657]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18656]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18658]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18657]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18659]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18658]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18660]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18659]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18661]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18660]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18662]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18661]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18663]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18662]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18664]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18663]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18664]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18665]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18666]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18665]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18667]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18666]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18668]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18667]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18669]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18668]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18670]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18669]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18671]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18670]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18672]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18671]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18673]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18672]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18674]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18674]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18675]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18675]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18676]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18673]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18676]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18677]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18678]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18677]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18679]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18678]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18680]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18679]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18680]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18681]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18682]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18681]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18683]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18682]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18684]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18683]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18685]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18685]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18686]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18684]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18686]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18687]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18688]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18687]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18689]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18688]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18690]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18689]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18691]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18690]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18692]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18691]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18693]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18692]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18694]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18693]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18695]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18694]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18696]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18695]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18697]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18696]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18698]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18697]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18699]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18698]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18699]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18700]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18701]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18700]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18702]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18701]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18703]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18702]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18703]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18704]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18705]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18705]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18706]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18706]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18707]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18707]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18708]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18708]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18709]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18709]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18710]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18704]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18711]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18710]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18712]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18711]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18712]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18713]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18714]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18713]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18715]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18714]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18716]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18715]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18717]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18716]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18718]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18717]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18719]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18718]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18720]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18719]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18721]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18720]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18721]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18722]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18723]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18722]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18724]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18723]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18725]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18725]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18726]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18724]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18727]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18726]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18728]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18727]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18729]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18728]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18730]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18729]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18730]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18731]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18732]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18731]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18733]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18732]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18734]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18733]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18735]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18734]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18736]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18735]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18737]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18736]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18738]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18737]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18739]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18739]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18740]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18740]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18741]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18738]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18741]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18742]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18743]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18743]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18744]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18742]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18745]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18744]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18746]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18745]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18746]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18747]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18748]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18747]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18749]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18748]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18750]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18749]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18751]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18750]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18751]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18752]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18753]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18752]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18754]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18753]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18755]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18755]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18756]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18754]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18757]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18756]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18758]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18757]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18759]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18758]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18760]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18759]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18761]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18760]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18762]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18762]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18763]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18761]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18764]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18763]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18765]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18765]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18766]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18764]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18766]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18767]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18768]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18767]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18769]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18768]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18770]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18769]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18771]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18771]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18772]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18772]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18773]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18773]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18774]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18774]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18775]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18775]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18776]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18770]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18776]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18777]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18778]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18777]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18779]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18779]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18780]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18778]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18781]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18781]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18782]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18780]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18783]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18782]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18784]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18783]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18785]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18784]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18786]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18785]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18787]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18786]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18788]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18787]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18789]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18788]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18790]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18789]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18791]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18790]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18792]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18791]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18793]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18792]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18794]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18793]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18795]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18794]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18796]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18795]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18797]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18796]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18798]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18797]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18799]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18798]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18800]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18799]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18801]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18800]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18802]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18801]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18803]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18802]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18804]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18803]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18805]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18804]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18806]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18805]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18807]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18806]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18808]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18807]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18809]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18808]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18810]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18809]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18811]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18810]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18812]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18811]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18813]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18812]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18814]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18813]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18815]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18814]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18816]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18815]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18817]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18816]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18818]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18817]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18819]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18818]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18820]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18819]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18821]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18820]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18822]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18821]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18823]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18822]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18824]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18823]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18825]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18824]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18826]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18825]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18827]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18826]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18828]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18827]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18829]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18828]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18830]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18829]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18831]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18830]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18832]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18831]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18833]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18832]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18834]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18834]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18833]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18835]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18836]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18835]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18837]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18836]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18838]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18837]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18839]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18838]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18839]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18840]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18841]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18840]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18842]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18841]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18843]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18842]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18844]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18843]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18845]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18844]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18846]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18845]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18847]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18846]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18848]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18847]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18849]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18848]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18850]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18849]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18851]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18850]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18852]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18851]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18853]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18852]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18854]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18854]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18855]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18855]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18856]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18856]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18857]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18853]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18858]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18857]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18859]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18858]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18860]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18859]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18861]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18860]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18862]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18861]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18863]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18862]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18864]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18863]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18865]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18864]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18866]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18865]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18867]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18866]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18867]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18868]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18869]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18868]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18870]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18869]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18871]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18870]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18872]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18871]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18873]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18872]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18874]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18873]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18875]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18874]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18876]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18875]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18877]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18876]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18878]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18877]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18879]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18879]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18880]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18878]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18881]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18880]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18882]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18881]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18883]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18882]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18884]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18884]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18885]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18885]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18886]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18886]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18887]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18883]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18887]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18888]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18889]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18888]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18890]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18889]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18891]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18891]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18890]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18892]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18893]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18892]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18894]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18893]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18895]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18894]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18895]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18896]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18897]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18896]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18898]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18897]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18899]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18898]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18900]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18900]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18901]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18899]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18902]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18901]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18903]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18902]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18904]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18903]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18905]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18904]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18906]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18905]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18907]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18906]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18908]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18907]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18909]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18908]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18910]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18909]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18911]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18910]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18912]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18911]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18913]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18913]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18914]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18914]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18915]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18915]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18916]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18912]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18917]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18916]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18918]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18917]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18919]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18918]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18920]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18919]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18921]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18920]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18922]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18922]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18923]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18921]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18924]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18923]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18925]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18924]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18926]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18925]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18927]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18926]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18928]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18927]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18929]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18928]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18930]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18929]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18931]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18930]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18932]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18931]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18933]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18932]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18934]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18933]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18935]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18934]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18936]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18935]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18937]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18936]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18938]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18937]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18939]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18938]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18940]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18939]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18941]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18940]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18942]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18941]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18943]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18943]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18944]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18944]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18945]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18945]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18946]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18942]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18947]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18946]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18948]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18947]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18948]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18949]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18950]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18949]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18951]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18950]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18952]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18951]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18953]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18952]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18954]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18953]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18955]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18954]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18956]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18955]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18957]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18956]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18958]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18957]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18959]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18958]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18960]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18959]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18961]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18960]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18962]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18961]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18963]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18962]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18964]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18963]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18965]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18964]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18966]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18965]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18967]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18966]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18968]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18967]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18969]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18969]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18970]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18968]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18971]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18970]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18972]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18971]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18973]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18972]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18974]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18974]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18975]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18975]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18976]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18976]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18977]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18973]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 18978]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18977]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 18979]]} + {:process 3 :type :fail :f :txn :value [[:append 4 18978]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18980]]} + {:process 2 :type :fail :f :txn :value [[:append 4 18979]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18981]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18980]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 18982]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18981]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 18983]]} + {:process 3 :type :fail :f :txn :value [[:append 1 18982]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18984]]} + {:process 2 :type :fail :f :txn :value [[:append 1 18983]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18985]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18984]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 18986]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18985]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 18987]]} + {:process 3 :type :fail :f :txn :value [[:append 6 18986]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18988]]} + {:process 2 :type :fail :f :txn :value [[:append 2 18987]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18989]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18988]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 18990]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18989]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 18991]]} + {:process 2 :type :fail :f :txn :value [[:append 7 18991]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 18992]]} + {:process 3 :type :fail :f :txn :value [[:append 3 18990]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 18993]]} + {:process 3 :type :fail :f :txn :value [[:append 2 18993]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 18994]]} + {:process 2 :type :fail :f :txn :value [[:append 6 18992]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 18994]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 18995]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 18996]]} + {:process 2 :type :fail :f :txn :value [[:append 0 18995]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 18997]]} + {:process 3 :type :fail :f :txn :value [[:append 7 18996]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 18998]]} + {:process 2 :type :fail :f :txn :value [[:append 3 18997]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 18999]]} + {:process 3 :type :fail :f :txn :value [[:append 5 18998]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19000]]} + {:process 2 :type :fail :f :txn :value [[:append 5 18999]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19001]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19000]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19002]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19001]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19003]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19003]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19004]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19004]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19002]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19005]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19006]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19005]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19007]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19006]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19008]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19007]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19009]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19008]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19009]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19010]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19011]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19010]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19012]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19011]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19013]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19012]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19014]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19013]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19015]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19014]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19016]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19016]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19017]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19015]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19018]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19017]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19019]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19018]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19020]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19019]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19021]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19020]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19022]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19021]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19023]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19022]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19024]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19023]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19025]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19024]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19026]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19025]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19027]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19026]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19028]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19027]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19029]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19028]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19030]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19029]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19031]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19031]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19032]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19032]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19033]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19033]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19034]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19030]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19035]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19034]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19036]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19036]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19037]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19035]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19038]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19037]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19039]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19038]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19040]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19039]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19041]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19040]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19042]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19041]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19043]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19042]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19044]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19043]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19045]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19044]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19046]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19045]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19047]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19046]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19048]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19047]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19049]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19048]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19050]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19049]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19051]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19050]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19052]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19051]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19053]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19052]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19054]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19053]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19055]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19054]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19056]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19055]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19057]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19056]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19058]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19057]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19059]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19059]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19060]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19060]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19061]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19061]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19062]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19058]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19062]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19063]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19064]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19063]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19065]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19064]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19066]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19065]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19067]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19066]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19068]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19067]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19069]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19068]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19070]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19069]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19071]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19070]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19072]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19071]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19073]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19072]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19074]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19073]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19075]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19074]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19076]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19075]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19077]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19076]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19078]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19077]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19079]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19078]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19079]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19080]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19081]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19080]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19082]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19081]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19083]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19083]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19084]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19082]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19085]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19084]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19086]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19085]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19087]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19086]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19087]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19088]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19089]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19088]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19090]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19090]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19091]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19091]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19092]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19092]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19093]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19089]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19094]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19093]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19095]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19094]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19096]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19095]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19097]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19096]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19098]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19097]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19099]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19098]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19100]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19099]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19101]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19100]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19102]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19101]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19103]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19102]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19104]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19104]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19105]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19103]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19105]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19106]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19107]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19106]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19108]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19107]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19109]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19108]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19110]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19110]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19111]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19109]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19112]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19111]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19113]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19112]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19114]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19113]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19115]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19114]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19116]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19115]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19117]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19116]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19118]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19117]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19119]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19119]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19120]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19120]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19121]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19118]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19121]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19122]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19123]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19122]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19124]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19123]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19125]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19124]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19126]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19125]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19127]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19126]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19128]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19127]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19129]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19128]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19130]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19129]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19131]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19131]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19132]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19130]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19133]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19133]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19134]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19132]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19135]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19134]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19136]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19135]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19137]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19136]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19138]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19137]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19139]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19138]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19140]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19139]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19141]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19140]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19142]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19141]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19142]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19143]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19144]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19143]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19145]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19144]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19146]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19145]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19147]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19147]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19148]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19148]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19149]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19149]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19150]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19146]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19151]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19150]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19152]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19151]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19153]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19152]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19154]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19154]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19155]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19153]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19156]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19155]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19157]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19156]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19158]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19157]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19159]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19158]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19160]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19159]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19161]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19160]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19162]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19161]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19163]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19162]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19164]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19163]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19165]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19164]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19166]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19165]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19167]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19166]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19168]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19167]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19169]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19168]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19170]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19169]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19171]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19170]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19172]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19171]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19173]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19172]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19174]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19173]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19175]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19174]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19175]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19176]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19177]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19176]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19177]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19178]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19179]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19178]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19180]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19179]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19181]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19180]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19181]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19182]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19183]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19182]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19184]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19183]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19185]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19184]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19186]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19185]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19187]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19186]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19188]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19187]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19189]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19188]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19189]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19190]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19191]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19190]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19192]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19191]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19193]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19192]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19193]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19194]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19195]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19194]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19196]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19195]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19197]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19196]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19198]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19197]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19199]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19198]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19200]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19199]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19201]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19200]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19202]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19202]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19203]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19201]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19204]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19203]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19205]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19204]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19206]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19205]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19207]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19206]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19208]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19207]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19209]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19208]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19210]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19209]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19211]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19210]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19212]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19211]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19213]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19212]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19214]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19213]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19215]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19214]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19216]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19215]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19217]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19216]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19218]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19217]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19219]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19218]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19220]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19219]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19221]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19220]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19222]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19221]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19223]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19222]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19224]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19223]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19225]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19224]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19226]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19225]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19227]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19226]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19228]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19227]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19229]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19229]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19230]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19230]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19231]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19228]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19232]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19231]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19232]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19233]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19234]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19233]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19234]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19235]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19236]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19235]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19237]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19236]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19238]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19237]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19239]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19238]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19240]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19239]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19241]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19240]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19242]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19241]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19243]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19242]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19244]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19243]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19245]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19244]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19246]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19245]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19247]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19246]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19248]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19247]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19249]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19248]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19250]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19249]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19251]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19250]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19252]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19251]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19253]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19253]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19254]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19252]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19254]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19255]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19256]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19255]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19257]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19256]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19258]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19258]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19259]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19259]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19260]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19260]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19261]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19257]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19261]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19262]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19263]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19262]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19264]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19263]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19265]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19264]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19266]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19265]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19267]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19266]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19268]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19267]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19269]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19268]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19270]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19269]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19271]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19270]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19272]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19271]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19273]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19273]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19274]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19272]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19275]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19274]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19276]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19275]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19277]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19276]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19277]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19278]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19279]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19278]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19280]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19279]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19281]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19280]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19282]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19281]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19282]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19283]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19284]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19283]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19285]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19284]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19286]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19285]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19287]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19286]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19288]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19288]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19289]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19287]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19290]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19289]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19291]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19290]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19292]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19291]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19293]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19292]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19294]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19293]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19295]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19294]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19296]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19295]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19297]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19296]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19298]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19297]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19299]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19299]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19300]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19298]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19301]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19300]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19302]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19301]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19303]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19302]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19303]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19304]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19305]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19304]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19306]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19305]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19307]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19306]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19307]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19308]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19309]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19308]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19310]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19309]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19311]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19310]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19312]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19311]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19313]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19313]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19314]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19312]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19315]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19315]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19316]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19316]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19317]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19317]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19314]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19318]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19319]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19318]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19320]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19320]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19321]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19319]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19322]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19321]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19323]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19322]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19324]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19324]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19325]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19325]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19326]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19323]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19327]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19326]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19328]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19327]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19329]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19328]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19330]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19329]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19331]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19330]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19332]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19331]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19333]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19332]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19334]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19333]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19335]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19334]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19336]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19335]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19337]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19336]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19338]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19337]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19339]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19338]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19340]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19339]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19341]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19341]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19342]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19342]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19343]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19343]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19344]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19344]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19345]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19340]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19346]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19345]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19346]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19347]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19348]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19347]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19349]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19348]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19350]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19349]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19351]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19350]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19351]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19352]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19353]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19352]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19354]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19353]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19355]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19354]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19355]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19356]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19357]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19356]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19358]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19357]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19359]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19358]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19359]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19360]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19361]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19360]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19362]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19361]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19363]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19362]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19363]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19364]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19365]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19364]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19366]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19365]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19367]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19366]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19368]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19367]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19369]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19368]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19370]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19369]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19371]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19370]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19372]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19371]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19373]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19372]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19374]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19373]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19375]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19374]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19376]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19375]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19377]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19376]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19378]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19377]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19379]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19378]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19379]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19380]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19381]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19380]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19382]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19381]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19383]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19382]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19384]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19383]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19385]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19384]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19386]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19385]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19387]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19386]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19388]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19387]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19389]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19388]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19390]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19389]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19391]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19390]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19392]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19391]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19393]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19392]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19394]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19393]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19395]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19394]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19396]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19396]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19397]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19397]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19398]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19395]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19399]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19399]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19400]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19398]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19401]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19400]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19402]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19401]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19402]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19403]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19404]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19404]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19405]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19403]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19405]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19406]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19407]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19406]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19408]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19407]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19408]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19410]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19409]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19410]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19411]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19409]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19412]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19411]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19413]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19412]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19413]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19414]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19415]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19414]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19416]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19415]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19417]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19416]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19417]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19418]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19419]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19418]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19420]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19420]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19421]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19421]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19422]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19422]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19423]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19419]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19424]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19423]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19425]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19424]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19426]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19425]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19427]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19426]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19428]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19427]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19429]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19428]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19430]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19429]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19431]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19430]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19432]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19431]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19433]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19432]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19434]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19433]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19435]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19434]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19436]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19435]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19437]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19436]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19438]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19437]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19439]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19438]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19440]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19439]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19441]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19440]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19442]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19441]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19442]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19443]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19444]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19444]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19445]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19443]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19446]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19445]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19447]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19446]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19448]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19447]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19449]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19449]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19450]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19448]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19451]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19450]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19452]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19451]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19453]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19452]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19453]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19454]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19455]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19454]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19456]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19455]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19457]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19456]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19457]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19458]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19459]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19459]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19460]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19460]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19458]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19461]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19462]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19461]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19463]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19462]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19463]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19464]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19465]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19464]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19466]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19465]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19467]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19466]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19467]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19468]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19469]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19468]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19470]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19469]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19471]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19470]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19472]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19472]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19473]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19471]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19474]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19473]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19475]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19474]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19476]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19475]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19477]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19476]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19478]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19477]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19479]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19478]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19480]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19479]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19481]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19480]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19482]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19481]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19483]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19482]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19484]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19483]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19485]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19484]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19486]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19485]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19487]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19486]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19488]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19487]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19489]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19488]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19490]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19489]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19491]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19490]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19492]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19491]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19493]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19492]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19494]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19493]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19495]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19494]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19496]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19495]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19497]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19496]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19498]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19497]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19499]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19499]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19500]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19498]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19501]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19500]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19501]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19502]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19503]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19502]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19504]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19503]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19505]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19504]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19505]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19506]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19507]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19506]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19508]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19507]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19509]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19508]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19509]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19510]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19511]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19510]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19512]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19511]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19513]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19513]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19514]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19512]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19515]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19514]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19516]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19515]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19517]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19517]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19516]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19518]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19519]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19518]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19520]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19519]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19521]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19521]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19522]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19520]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19523]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19522]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19524]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19523]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19525]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19525]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19526]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19526]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19527]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19527]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19528]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19524]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19529]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19528]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19530]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19529]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19531]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19530]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19531]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19532]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19533]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19532]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19534]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19533]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19535]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19534]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19536]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19535]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19537]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19536]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19538]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19537]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19539]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19538]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19540]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19539]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19541]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19540]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19542]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19541]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19543]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19542]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19544]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19543]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19545]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19544]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19546]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19546]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19545]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19547]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19548]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19547]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19549]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19548]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19550]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19549]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19551]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19550]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19552]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19551]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19553]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19552]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19554]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19553]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19555]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19555]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19556]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19556]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19557]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19557]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19558]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19554]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19559]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19558]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19560]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19559]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19561]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19560]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19562]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19561]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19563]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19562]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19563]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19564]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19565]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19564]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19566]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19565]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19567]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19566]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19568]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19568]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19569]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19567]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19569]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19570]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19571]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19570]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19572]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19571]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19573]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19572]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19574]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19573]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19574]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19575]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19576]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19575]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19577]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19576]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19578]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19577]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19579]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19578]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19580]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19579]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19581]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19580]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19582]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19581]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19583]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19582]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19584]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19584]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19585]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19585]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19586]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19586]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19587]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19583]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19588]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19587]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19589]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19588]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19590]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19590]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19591]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19589]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19592]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19591]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19593]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19592]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19593]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19594]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19595]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19594]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19596]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19595]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19597]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19596]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19597]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19598]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19599]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19598]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19600]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19599]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19601]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19600]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19601]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19602]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19603]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19602]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19604]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19603]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19605]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19604]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19605]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19606]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19607]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19606]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19608]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19607]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19609]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19608]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19610]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19610]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19611]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19611]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19612]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19609]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19613]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19612]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19614]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19614]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19615]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19613]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19616]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19616]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19617]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19615]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19618]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19617]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19619]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19618]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19619]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19620]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19621]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19620]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19622]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19621]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19623]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19622]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19624]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19623]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19625]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19624]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19626]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19625]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19627]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19626]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19627]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19628]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19629]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19628]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19630]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19630]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19631]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19629]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19631]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19633]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19632]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19633]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19632]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19634]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19635]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19634]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19636]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19635]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19637]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19636]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19637]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19638]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19639]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19638]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19640]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19639]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19641]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19640]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19642]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19641]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19643]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19642]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19644]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19643]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19645]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19644]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19646]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19645]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19647]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19646]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19648]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19647]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19649]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19648]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19649]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19650]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19651]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19650]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19652]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19651]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19653]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19652]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19653]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19654]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19655]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19654]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19656]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19655]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19657]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19656]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19658]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19657]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19659]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19658]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19660]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19659]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19661]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19660]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19662]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19661]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19663]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19662]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19664]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19663]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19665]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19664]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19665]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19666]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19667]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19666]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19668]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19667]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19669]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19668]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19669]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19670]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19671]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19670]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19672]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19671]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19673]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19672]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19673]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19674]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19675]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19675]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19676]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19676]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19677]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19677]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19678]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19678]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19679]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19679]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19680]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19680]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19681]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19681]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19682]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19682]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19683]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19683]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19684]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19684]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19685]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19685]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19686]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19686]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19687]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19687]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19688]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19674]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19689]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19688]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19690]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19689]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19690]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19691]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19692]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19691]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19693]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19692]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19694]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19693]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19695]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19694]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19696]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19695]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19696]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19697]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19698]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19697]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19699]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19698]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19700]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19699]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19701]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19700]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19701]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19702]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19703]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19702]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19704]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19703]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19705]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19704]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19706]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19706]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19707]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19705]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19708]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19707]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19709]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19709]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19710]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19708]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19711]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19710]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19711]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19712]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19713]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19713]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19714]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19712]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19715]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19714]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19716]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19715]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19716]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19717]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19718]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19717]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19719]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19718]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19720]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19719]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19721]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19720]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19721]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19722]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19723]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19723]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19724]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19722]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19725]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19724]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19726]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19725]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19726]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19727]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19728]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19727]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19729]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19728]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19730]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19729]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19731]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19730]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19731]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19732]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19733]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19732]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19734]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19733]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19735]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19734]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19736]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19735]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19737]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19736]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19738]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19737]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19739]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19738]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19740]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19739]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19741]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19740]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19742]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19741]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19743]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19742]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19744]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19744]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19743]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19745]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19746]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19745]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19747]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19746]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19748]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19747]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19749]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19748]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19749]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19750]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19751]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19750]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19752]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19751]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19753]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19752]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19753]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19754]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19755]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19754]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19756]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19755]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19757]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19756]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19758]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19757]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19759]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19758]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19760]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19759]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19761]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19760]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19761]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19762]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19763]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19762]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19764]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19763]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19765]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19764]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19765]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19766]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19767]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19766]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19768]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19767]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19769]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19768]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19769]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19770]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19771]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19770]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19772]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19771]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19773]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19772]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19773]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19774]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19775]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19774]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19776]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19775]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19777]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19776]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19777]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19778]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19779]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19778]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19780]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19780]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19781]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19781]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19782]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19782]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19783]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19783]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19784]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19784]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19785]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19785]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19786]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19786]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19787]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19787]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19788]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19788]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19789]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19789]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19790]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19790]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19791]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19791]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19792]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19792]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19793]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19793]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19794]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19794]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19795]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19795]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19796]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19796]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19797]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19779]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19798]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19797]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19799]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19799]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19800]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19800]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19801]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19798]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19802]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19801]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19803]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19802]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19804]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19803]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19805]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19804]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19806]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19805]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19807]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19806]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19808]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19807]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19809]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19808]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19810]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19810]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19811]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19811]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19812]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19809]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19812]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19813]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19814]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19813]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19815]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19814]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19816]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19815]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19817]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19817]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19818]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19816]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19818]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19819]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19820]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19819]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19821]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19820]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19822]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19821]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19823]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19823]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19824]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19824]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19825]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19822]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19826]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19825]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19827]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19826]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19828]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19827]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19829]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19828]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19830]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19829]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19831]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19830]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19832]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19831]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19833]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19832]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19834]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19833]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19835]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19834]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19836]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19835]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19837]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19836]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19838]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19837]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19839]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19838]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19840]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19839]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19841]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19840]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19842]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19841]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19843]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19843]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19844]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19842]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19845]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19844]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19846]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19845]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19847]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19846]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19847]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19848]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19849]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19848]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19850]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19849]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19851]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19850]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19852]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19852]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19853]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19853]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19854]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19854]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19855]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19851]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19855]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19856]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19857]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19856]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19858]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19858]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19859]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19859]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19857]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19860]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19861]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19860]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19862]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19861]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19863]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19862]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19864]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19863]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19865]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19864]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19866]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19865]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19867]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19866]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19868]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19867]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19869]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19869]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19870]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19868]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19871]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19870]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19872]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19871]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19873]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19872]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19874]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19873]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19875]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19874]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19876]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19875]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19877]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19876]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19878]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19878]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19879]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19879]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19880]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19880]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19881]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19877]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19882]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19881]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19883]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19882]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19884]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19883]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19885]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19884]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19886]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19885]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19887]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19886]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19888]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19887]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19889]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19889]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19890]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19888]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19891]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19890]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19892]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19891]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19893]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19892]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19893]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19894]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19895]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19894]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19896]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19895]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19897]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19896]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19897]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19898]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19899]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19898]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19900]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19899]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19901]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19900]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19902]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19901]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19903]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19902]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19904]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19903]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19905]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19904]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19905]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19906]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19907]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19906]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19908]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19908]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19909]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19909]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19910]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19910]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19911]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19911]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19912]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19907]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19913]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19912]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19914]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19914]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19915]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19913]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19915]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19916]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19917]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19916]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19918]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19917]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19919]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19918]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19920]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19919]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19920]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19921]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19922]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19922]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19923]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19921]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19924]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19923]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19925]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19924]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19926]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19925]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19927]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19926]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19928]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19927]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19929]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19928]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19929]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19930]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19931]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19930]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19932]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19931]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19933]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19932]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19934]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19933]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19935]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19934]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19936]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19936]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19937]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19935]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19938]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19937]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19939]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19939]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19940]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19940]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19941]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19941]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19942]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19938]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19942]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19943]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19944]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19943]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19945]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19944]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19946]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19945]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19947]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19946]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19948]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19947]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19949]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19948]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19950]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19949]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19951]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19950]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19952]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19951]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19953]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19952]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19953]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19954]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19955]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19954]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19956]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19956]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19957]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19955]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19958]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19957]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19959]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19958]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19960]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19959]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19961]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19960]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19962]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19961]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19963]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19962]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19964]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19963]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19965]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19964]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19966]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19965]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19967]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19966]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19968]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19967]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19969]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19969]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19970]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19970]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19971]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19968]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19972]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19971]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19973]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19972]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19974]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19973]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 19975]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19974]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19976]]} + {:process 2 :type :fail :f :txn :value [[:append 7 19975]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19977]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19976]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19978]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19977]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19978]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19979]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 19980]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19979]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 19981]]} + {:process 2 :type :fail :f :txn :value [[:append 0 19980]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19982]]} + {:process 3 :type :fail :f :txn :value [[:append 1 19981]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19983]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19982]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 19984]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19983]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 19985]]} + {:process 2 :type :fail :f :txn :value [[:append 5 19984]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19986]]} + {:process 3 :type :fail :f :txn :value [[:append 6 19985]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19987]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19987]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 19988]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19986]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 19988]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19989]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 19990]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19989]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 19991]]} + {:process 2 :type :fail :f :txn :value [[:append 6 19990]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 19992]]} + {:process 3 :type :fail :f :txn :value [[:append 0 19991]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 19993]]} + {:process 2 :type :fail :f :txn :value [[:append 1 19992]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 19994]]} + {:process 2 :type :fail :f :txn :value [[:append 3 19994]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 19995]]} + {:process 3 :type :fail :f :txn :value [[:append 7 19993]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 19996]]} + {:process 2 :type :fail :f :txn :value [[:append 2 19995]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 19996]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 19997]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 19998]]} + {:process 3 :type :fail :f :txn :value [[:append 4 19997]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 19999]]} + {:process 2 :type :fail :f :txn :value [[:append 4 19998]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20000]]} + {:process 3 :type :fail :f :txn :value [[:append 2 19999]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20001]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20001]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20002]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20000]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20002]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20003]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20004]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20003]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20005]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20004]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20006]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20005]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20007]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20006]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20008]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20008]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20009]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20007]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20010]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20010]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20011]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20011]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20012]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20009]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20013]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20012]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20014]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20013]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20015]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20015]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20016]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20014]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20017]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20016]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20018]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20017]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20019]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20018]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20020]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20019]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20021]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20020]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20022]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20021]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20023]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20022]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20023]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20024]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20025]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20025]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20026]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20024]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20027]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20026]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20028]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20027]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20029]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20029]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20030]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20030]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20031]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20028]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20032]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20031]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20033]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20032]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20034]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20033]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20035]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20035]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20036]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20036]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20034]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20037]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20038]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20037]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20039]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20038]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20040]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20039]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20041]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20041]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20042]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20040]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20043]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20043]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20044]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20042]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20045]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20044]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20046]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20046]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20047]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20045]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20048]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20047]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20048]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20049]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20050]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20049]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20051]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20050]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20052]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20051]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20053]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20052]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20053]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20054]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20055]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20054]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20056]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20055]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20057]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20056]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20058]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20057]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20058]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20059]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20060]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20059]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20061]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20060]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20062]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20061]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20063]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20062]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20063]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20064]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20065]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20064]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20066]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20066]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20067]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20067]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20068]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20065]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20069]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20068]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20070]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20070]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20071]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20071]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20069]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20072]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20073]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20072]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20074]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20074]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20073]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20075]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20076]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20075]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20077]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20076]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20078]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20077]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20079]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20079]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20080]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20078]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20080]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20081]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20082]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20081]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20083]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20082]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20084]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20083]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20085]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20084]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20086]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20085]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20087]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20086]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20088]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20087]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20089]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20088]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20089]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20090]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20091]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20091]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20092]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20090]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20093]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20092]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20094]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20093]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20095]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20095]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20096]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20096]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20094]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20097]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20098]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20097]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20099]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20098]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20100]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20099]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20101]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20100]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20102]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20102]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20103]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20101]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20104]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20103]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20104]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20105]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20106]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20105]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20107]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20106]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20108]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20107]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20109]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20109]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20110]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20108]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20110]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20111]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20112]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20111]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20113]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20112]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20114]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20113]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20115]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20114]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20116]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20115]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20117]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20116]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20118]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20117]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20119]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20118]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20120]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20120]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20121]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20119]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20122]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20121]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20123]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20122]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20124]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20123]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20125]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20125]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20126]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20124]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20127]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20126]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20128]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20128]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20129]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20129]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20130]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20127]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20131]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20130]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20132]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20131]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20132]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20133]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20134]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20133]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20135]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20135]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20136]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20134]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20137]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20136]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20138]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20137]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20139]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20138]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20140]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20139]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20141]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20140]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20141]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20143]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20142]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20143]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20144]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20142]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20145]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20144]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20146]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20145]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20147]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20146]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20148]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20147]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20149]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20149]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20150]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20150]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20151]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20151]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20152]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20148]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20152]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20153]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20154]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20153]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20155]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20154]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20156]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20155]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20157]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20156]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20158]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20158]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20159]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20157]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20160]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20160]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20159]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20161]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20162]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20161]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20163]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20162]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20164]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20163]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20165]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20164]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20166]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20166]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20167]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20165]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20168]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20167]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20169]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20168]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20170]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20169]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20171]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20170]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20172]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20171]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20173]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20172]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20174]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20173]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20175]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20174]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20176]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20175]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20177]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20176]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20178]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20178]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20179]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20179]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20180]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20180]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20181]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20181]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20182]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20177]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20183]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20182]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20184]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20183]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20184]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20185]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20186]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20185]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20187]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20186]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20188]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20187]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20189]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20188]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20190]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20189]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20191]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20190]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20191]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20192]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20193]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20192]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20194]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20193]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20195]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20194]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20195]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20196]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20197]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20196]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20198]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20197]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20199]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20198]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20200]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20199]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20200]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20201]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20202]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20201]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20203]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20202]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20204]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20203]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20205]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20204]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20205]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20206]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20207]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20206]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20208]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20207]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20209]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20209]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20210]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20210]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20211]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20211]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20212]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20208]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20212]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20213]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20214]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20214]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20213]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20215]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20216]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20216]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20217]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20215]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20218]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20217]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20219]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20218]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20220]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20219]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20221]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20220]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20222]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20221]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20223]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20222]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20224]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20223]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20225]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20224]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20226]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20225]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20227]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20227]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20228]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20226]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20229]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20228]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20230]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20229]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20231]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20230]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20232]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20231]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20233]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20232]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20234]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20233]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20234]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20236]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20235]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20236]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20237]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20235]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20238]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20237]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20239]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20239]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20240]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20238]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20240]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20241]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20242]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20241]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20243]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20243]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20244]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20244]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20245]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20245]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20246]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20242]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20247]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20246]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20248]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20247]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20248]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20249]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20250]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20249]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20251]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20250]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20251]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20252]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20253]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20252]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20254]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20253]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20255]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20254]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20255]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20256]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20257]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20256]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20258]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20257]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20259]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20258]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20260]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20259]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20261]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20260]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20262]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20261]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20263]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20262]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20264]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20263]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20265]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20264]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20266]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20265]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20267]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20266]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20268]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20267]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20269]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20268]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20270]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20269]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20271]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20271]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20272]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20272]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20273]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20270]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20274]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20274]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20275]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20273]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20276]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20275]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20277]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20276]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20278]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20277]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20279]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20278]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20280]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20279]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20281]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20280]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20282]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20281]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20283]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20282]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20283]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20284]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20285]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20284]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20286]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20285]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20287]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20286]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20287]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20288]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20289]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20288]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20290]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20289]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20291]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20290]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20291]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20292]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20293]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20292]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20294]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20293]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20295]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20294]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20296]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20296]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20297]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20295]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20297]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20298]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20299]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20298]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20300]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20299]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20301]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20300]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20302]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20301]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20303]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20302]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20304]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20303]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20305]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20304]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20306]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20305]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20307]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20306]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20308]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20307]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20309]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20308]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20310]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20309]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20311]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20310]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20312]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20311]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20313]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20313]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20312]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20314]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20315]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20314]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20316]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20315]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20317]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20316]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20317]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20318]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20319]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20318]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20320]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20320]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20319]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20321]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20322]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20321]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20323]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20322]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20324]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20323]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20325]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20325]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20326]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20326]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20327]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20327]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20328]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20324]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20329]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20328]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20330]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20329]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20331]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20330]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20332]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20331]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20333]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20332]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20333]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20334]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20335]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20334]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20336]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20335]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20337]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20336]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20338]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20337]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20339]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20338]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20340]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20339]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20341]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20341]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20342]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20340]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20342]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20343]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20344]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20343]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20345]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20344]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20346]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20345]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20347]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20346]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20348]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20347]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20349]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20348]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20350]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20349]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20351]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20350]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20352]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20352]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20353]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20353]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20354]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20351]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20354]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20355]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20356]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20356]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20355]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20357]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20358]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20357]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20359]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20358]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20360]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20359]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20361]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20360]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20362]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20361]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20363]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20362]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20364]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20363]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20365]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20364]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20366]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20366]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20367]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20367]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20368]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20368]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20369]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20369]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20370]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20370]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20371]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20365]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20372]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20371]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20373]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20372]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20374]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20373]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20375]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20374]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20376]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20376]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20377]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20377]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20378]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20378]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20379]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20379]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20380]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20375]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20381]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20380]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20382]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20381]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20383]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20382]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20384]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20383]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20385]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20384]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20385]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20386]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20387]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20386]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20388]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20387]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20389]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20388]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20389]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20390]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20391]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20390]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20392]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20392]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20393]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20391]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20394]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20393]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20395]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20394]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20396]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20395]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20397]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20396]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20398]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20397]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20399]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20398]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20400]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20399]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20401]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20400]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20402]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20401]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20403]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20402]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20404]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20403]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20405]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20404]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20406]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20405]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20407]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20407]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20408]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20408]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20409]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20409]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20410]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20406]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20410]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20411]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20412]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20412]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20411]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20413]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20414]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20413]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20415]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20415]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20416]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20414]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20417]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20416]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20418]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20417]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20419]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20418]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20420]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20419]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20421]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20420]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20422]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20421]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20423]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20422]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20424]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20423]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20425]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20424]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20426]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20425]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20427]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20427]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20426]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20428]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20429]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20428]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20430]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20429]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20431]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20430]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20432]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20431]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20433]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20432]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20434]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20433]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20435]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20435]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20436]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20436]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20437]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20437]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20438]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20434]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20438]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20439]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20440]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20439]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20440]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20441]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20442]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20442]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20443]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20441]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20444]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20443]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20445]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20444]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20446]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20445]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20447]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20447]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20448]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20448]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20449]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20446]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20450]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20449]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20451]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20450]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20451]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20452]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20453]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20452]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20454]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20453]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20455]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20454]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20456]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20455]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20457]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20456]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20458]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20457]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20459]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20458]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20460]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20459]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20461]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20460]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20462]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20461]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20463]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20462]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20463]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20464]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20465]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20464]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20466]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20465]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20467]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20466]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20467]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20468]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20469]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20468]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20470]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20469]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20471]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20470]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20471]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20472]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20473]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20472]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20474]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20473]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20475]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20474]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20475]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20476]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20477]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20476]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20478]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20477]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20479]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20478]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20480]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20479]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20481]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20480]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20482]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20481]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20483]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20482]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20484]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20483]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20484]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20485]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20486]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20485]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20487]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20487]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20488]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20488]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20489]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20486]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20490]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20489]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20491]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20491]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20492]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20492]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20493]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20493]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20490]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20494]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20495]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20494]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20496]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20495]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20497]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20496]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20498]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20497]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20499]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20498]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20500]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20499]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20501]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20500]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20502]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20501]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20503]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20502]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20504]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20503]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20505]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20504]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20506]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20505]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20507]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20506]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20508]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20508]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20509]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20507]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20510]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20509]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20511]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20510]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20512]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20511]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20513]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20512]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20514]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20513]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20515]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20514]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20516]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20515]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20517]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20516]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20518]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20517]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20519]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20518]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20520]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20519]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20521]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20521]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20522]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20522]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20523]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20523]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20524]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20520]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20525]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20524]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20526]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20525]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20527]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20526]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20528]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20527]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20529]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20528]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20530]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20529]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20531]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20530]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20532]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20532]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20533]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20531]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20534]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20533]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20535]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20534]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20536]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20535]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20537]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20536]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20538]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20537]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20539]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20538]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20540]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20539]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20541]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20540]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20541]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20542]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20543]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20542]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20544]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20543]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20545]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20544]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20546]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20545]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20547]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20546]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20548]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20547]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20549]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20548]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20550]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20549]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20551]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20550]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20552]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20552]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20553]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20553]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20554]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20554]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20555]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20551]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20556]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20556]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20557]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20555]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20558]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20558]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20559]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20557]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20560]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20560]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20561]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20559]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20561]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20562]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20563]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20562]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20564]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20563]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20565]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20564]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20565]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20566]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20567]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20566]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20568]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20567]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20569]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20568]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20570]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20569]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20571]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20570]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20572]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20571]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20573]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20572]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20573]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20574]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20575]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20574]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20576]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20575]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20577]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20576]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20578]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20577]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20579]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20578]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20580]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20579]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20581]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20580]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20581]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20582]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20583]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20583]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20584]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20582]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20585]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20584]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20586]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20585]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20586]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20588]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20587]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20587]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20589]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20588]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20590]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20589]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20591]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20590]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20592]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20591]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20593]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20592]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20594]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20593]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20595]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20594]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20596]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20595]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20597]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20596]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20598]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20597]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20598]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20599]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20599]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20600]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20601]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20600]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20602]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20602]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20603]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20603]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20604]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20604]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20605]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20601]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20606]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20605]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20607]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20606]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20608]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20607]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20609]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20608]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20610]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20609]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20611]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20610]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20612]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20611]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20613]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20612]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20614]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20613]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20615]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20614]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20616]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20615]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20617]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20616]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20618]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20617]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20619]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20618]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20620]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20619]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20621]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20620]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20622]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20621]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20623]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20622]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20624]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20623]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20625]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20624]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20626]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20625]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20627]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20626]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20628]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20627]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20629]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20628]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20630]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20629]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20631]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20630]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20632]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20631]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20633]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20632]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20634]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20633]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20635]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20634]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20636]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20635]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20637]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20636]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20638]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20637]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20639]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20638]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20640]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20639]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20641]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20640]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20642]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20641]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20643]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20642]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20644]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20643]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20645]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20644]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20646]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20645]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20647]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20646]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20648]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20647]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20649]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20648]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20650]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20649]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20651]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20650]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20652]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20651]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20653]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20652]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20654]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20653]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20654]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20655]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20656]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20656]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20657]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20657]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20658]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20655]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20659]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20658]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20660]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20659]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20661]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20660]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20662]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20661]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20663]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20662]]} + {:process 2 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20663]]} + {:process 2 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20664]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20665]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20664]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20666]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20665]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20667]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20666]]} + {:process 2 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20667]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20668]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20669]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20668]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20670]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20669]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20671]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20670]]} + {:process 2 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 5 20672]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20671]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20673]]} + {:process 2 :type :fail :f :txn :value [[:append 5 20672]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20674]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20673]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20675]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20674]]} + {:process 2 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 6 20676]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20675]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20677]]} + {:process 2 :type :fail :f :txn :value [[:append 6 20676]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20678]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20678]]} + {:process 2 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 3 20679]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20677]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20680]]} + {:process 2 :type :fail :f :txn :value [[:append 3 20679]]} + {:process 2 :type :invoke :f :txn :value [[:append 2 20681]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20680]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20682]]} + {:process 2 :type :fail :f :txn :value [[:append 2 20681]]} + {:process 2 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 4 20683]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20682]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20684]]} + {:process 2 :type :fail :f :txn :value [[:append 4 20683]]} + {:process 2 :type :invoke :f :txn :value [[:append 7 20685]]} + {:process 2 :type :fail :f :txn :value [[:append 7 20685]]} + {:process 2 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 2 :type :invoke :f :txn :value [[:append 1 20686]]} + {:process 2 :type :fail :f :txn :value [[:append 1 20686]]} + {:process 2 :type :invoke :f :txn :value [[:append 0 20687]]} + {:process 2 :type :fail :f :txn :value [[:append 0 20687]]} + {:process 2 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 2 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20684]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20688]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20688]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20689]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20689]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20690]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20690]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20691]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20691]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20692]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20692]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20693]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20693]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20694]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20694]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20695]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20695]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20696]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20696]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20697]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20697]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20698]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20698]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20699]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20699]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20700]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20700]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20701]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20701]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20702]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20702]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20703]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20703]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20704]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20704]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20705]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20705]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20706]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20706]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20707]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20707]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20708]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20708]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20709]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20709]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20710]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20710]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20711]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20711]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20712]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20712]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20713]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20713]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20714]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20714]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20715]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20715]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20716]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20716]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20717]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20717]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20718]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20718]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20719]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20719]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20720]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20720]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20721]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20721]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20722]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20722]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20723]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20723]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20724]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20724]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20725]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20725]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20726]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20726]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20727]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20727]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20728]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20728]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20729]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20729]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20730]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20730]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20731]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20731]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20732]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20732]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20733]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20733]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20734]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20734]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20735]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20735]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20736]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20736]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20737]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20737]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20738]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20738]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20739]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20739]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20740]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20740]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20741]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20741]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20742]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20742]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20743]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20743]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20744]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20744]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20745]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20745]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20746]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20746]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20747]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20747]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20748]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20748]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20749]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20749]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20750]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20750]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20751]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20751]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20752]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20752]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20753]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20753]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20754]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20754]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20755]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20755]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20756]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20756]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20757]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20757]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20758]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20758]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20759]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20759]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20760]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20760]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20761]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20761]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20762]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20762]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20763]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20763]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20764]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20764]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20765]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20765]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20766]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20766]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20767]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20767]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20768]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20768]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20769]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20769]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20770]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20770]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20771]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20771]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20772]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20772]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20773]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20773]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20774]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20774]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20775]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20775]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20776]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20776]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20777]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20777]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20778]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20778]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20779]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20779]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20780]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20780]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20781]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20781]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20782]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20782]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20783]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20783]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20784]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20784]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20785]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20785]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20786]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20786]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20787]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20787]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20788]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20788]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20789]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20789]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20790]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20790]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20791]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20791]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20792]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20792]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20793]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20793]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20794]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20794]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20795]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20795]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20796]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20796]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20797]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20797]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20798]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20798]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20799]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20799]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20800]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20800]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20801]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20801]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20802]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20802]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20803]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20803]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20804]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20804]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20805]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20805]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20806]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20806]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20807]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20807]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20808]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20808]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20809]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20809]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20810]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20810]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20811]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20811]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20812]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20812]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20813]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20813]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20814]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20814]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20815]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20815]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20816]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20816]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20817]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20817]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20818]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20818]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20819]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20819]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20820]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20820]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20821]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20821]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20822]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20822]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20823]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20823]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20824]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20824]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20825]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20825]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20826]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20826]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20827]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20827]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20828]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20828]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20829]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20829]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20830]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20830]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20831]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20831]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20832]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20832]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20833]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20833]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20834]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20834]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20835]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20835]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20836]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20836]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20837]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20837]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20838]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20838]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20839]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20839]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20840]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20840]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20841]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20841]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20842]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20842]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20843]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20843]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20844]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20844]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20845]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20845]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20846]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20846]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20847]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20847]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20848]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20848]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20849]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20849]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20850]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20850]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20851]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20851]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20852]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20852]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20853]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20853]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20854]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20854]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20855]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20855]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20856]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20856]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20857]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20857]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20858]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20858]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20859]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20859]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20860]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20860]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20861]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20861]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20862]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20862]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20863]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20863]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20864]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20864]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20865]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20865]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20866]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20866]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20867]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20867]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20868]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20868]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20869]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20869]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20870]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20870]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20871]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20871]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20872]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20872]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20873]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20873]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20874]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20874]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20875]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20875]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20876]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20876]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20877]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20877]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20878]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20878]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20879]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20879]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20880]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20880]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20881]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20881]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20882]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20882]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20883]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20883]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20884]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20884]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20885]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20885]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20886]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20886]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20887]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20887]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20888]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20888]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20889]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20889]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20890]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20890]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20891]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20891]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20892]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20892]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20893]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20893]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20894]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20894]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20895]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20895]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20896]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20896]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20897]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20897]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20898]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20898]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20899]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20899]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20900]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20900]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20901]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20901]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20902]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20902]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20903]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20903]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20904]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20904]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20905]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20905]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20906]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20906]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20907]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20907]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20908]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20908]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20909]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20909]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20910]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20910]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20911]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20911]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20912]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20912]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20913]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20913]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20914]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20914]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20915]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20915]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20916]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20916]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20917]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20917]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20918]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20918]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20919]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20919]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20920]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20920]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20921]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20921]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20922]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20922]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20923]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20923]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20924]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20924]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20925]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20925]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20926]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20926]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20927]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20927]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20928]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20928]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20929]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20929]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20930]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20930]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20931]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20931]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20932]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20932]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20933]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20933]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20934]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20934]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20935]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20935]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20936]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20936]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20937]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20937]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20938]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20938]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20939]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20939]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20940]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20940]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20941]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20941]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20942]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20942]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20943]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20943]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20944]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20944]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20945]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20945]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20946]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20946]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20947]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20947]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20948]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20948]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20949]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20949]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20950]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20950]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20951]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20951]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20952]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20952]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20953]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20953]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20954]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 20955]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20954]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20956]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20956]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20957]]} + {:process 0 :type :fail :f :txn :value [[:append 2 20955]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 20958]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20957]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20959]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20959]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20960]]} + {:process 0 :type :fail :f :txn :value [[:append 1 20958]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 20961]]} + {:process 0 :type :fail :f :txn :value [[:append 7 20961]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 20962]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20960]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20963]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20963]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20964]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20964]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20965]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20965]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20966]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20966]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20967]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20967]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20968]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20968]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20969]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20969]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20970]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20970]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20971]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20971]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20972]]} + {:process 0 :type :fail :f :txn :value [[:append 6 20962]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20972]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20973]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20973]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 20974]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20975]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20975]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20976]]} + {:process 0 :type :fail :f :txn :value [[:append 4 20974]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 20977]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20976]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 20978]]} + {:process 0 :type :fail :f :txn :value [[:append 3 20977]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 20978]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20979]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 20980]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20979]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 20981]]} + {:process 0 :type :fail :f :txn :value [[:append 1 20980]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 20982]]} + {:process 3 :type :fail :f :txn :value [[:append 0 20981]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20983]]} + {:process 0 :type :fail :f :txn :value [[:append 0 20982]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20983]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 20984]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 20985]]} + {:process 0 :type :fail :f :txn :value [[:append 6 20984]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 20986]]} + {:process 3 :type :fail :f :txn :value [[:append 5 20985]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20987]]} + {:process 0 :type :fail :f :txn :value [[:append 5 20986]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20987]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 20988]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 20989]]} + {:process 0 :type :fail :f :txn :value [[:append 3 20988]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 20990]]} + {:process 3 :type :fail :f :txn :value [[:append 2 20989]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 20991]]} + {:process 0 :type :fail :f :txn :value [[:append 2 20990]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 20991]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 20992]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 20993]]} + {:process 0 :type :fail :f :txn :value [[:append 0 20992]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 20994]]} + {:process 3 :type :fail :f :txn :value [[:append 7 20993]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 20995]]} + {:process 0 :type :fail :f :txn :value [[:append 7 20994]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 20996]]} + {:process 3 :type :fail :f :txn :value [[:append 6 20995]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 20996]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 20998]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 20997]]} + {:process 0 :type :fail :f :txn :value [[:append 4 20998]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 20997]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 20999]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21000]]} + {:process 0 :type :fail :f :txn :value [[:append 2 20999]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21001]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21000]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21002]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21001]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21003]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21002]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21004]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21003]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21005]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21004]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21005]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21006]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21007]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21006]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21008]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21007]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21009]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21008]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21010]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21009]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21011]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21010]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21012]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21011]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21013]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21012]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21014]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21013]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21014]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21015]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21016]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21015]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21017]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21016]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21018]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21017]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21019]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21018]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21020]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21019]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21021]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21020]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21022]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21021]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21023]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21022]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21024]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21023]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21025]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21024]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21026]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21025]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21027]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21026]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21028]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21027]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21029]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21028]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21030]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21029]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21031]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21030]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21032]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21031]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21033]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21032]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21033]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21034]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21035]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21034]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21036]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21036]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21037]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21035]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21038]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21037]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21039]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21038]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21039]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21040]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21041]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21040]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21042]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21041]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21043]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21042]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21043]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21044]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21045]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21044]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21046]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21045]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21047]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21046]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21048]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21047]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21049]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21048]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21050]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21049]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21051]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21050]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21052]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21051]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21052]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21053]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21054]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21053]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21055]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21054]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21056]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21055]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21057]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21056]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21058]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21057]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21058]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21059]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21060]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21059]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21060]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21061]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21062]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21062]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21063]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21061]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21064]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21063]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21065]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21064]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21066]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21065]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21067]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21066]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21068]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21067]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21069]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21068]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21070]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21069]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21071]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21070]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21072]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21071]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21073]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21072]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21074]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21073]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21075]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21074]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21076]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21075]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21077]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21076]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21078]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21077]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21079]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21078]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21080]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21079]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21081]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21080]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21082]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21081]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21083]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21082]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21084]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21083]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21085]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21084]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21086]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21085]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21087]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21086]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21088]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21087]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21089]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21088]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21090]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21089]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21091]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21090]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21092]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21091]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21093]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21092]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21094]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21093]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21095]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21094]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21096]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21095]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21097]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21096]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21098]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21097]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21099]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21098]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21100]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21099]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21101]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21100]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21102]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21101]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21103]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21102]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21104]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21103]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21105]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21104]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21106]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21105]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21107]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21106]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21108]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21107]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21109]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21108]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21109]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21110]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21111]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21110]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21112]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21111]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21113]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21112]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21113]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21114]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21115]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21114]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21116]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21115]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21117]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21116]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21118]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21117]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21119]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21118]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21120]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21119]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21121]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21120]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21121]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21122]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21123]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21122]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21124]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21123]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21125]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21124]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21126]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21125]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21127]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21126]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21128]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21127]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21129]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21128]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21129]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21130]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21131]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21130]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21132]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21131]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21133]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21132]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21133]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21134]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21135]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21134]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21136]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21135]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21137]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21136]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21137]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21138]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21139]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21138]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21140]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21139]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21141]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21140]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21141]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21142]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21143]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21142]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21144]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21143]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21145]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21144]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21146]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21145]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21147]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21146]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21148]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21147]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21149]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21148]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21149]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21150]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21151]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21150]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21152]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21151]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21153]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21152]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21153]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21154]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21155]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21154]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21156]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21155]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21157]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21156]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21157]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21158]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21159]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21158]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21160]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21159]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21161]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21160]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21161]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21162]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21163]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21162]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21164]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21163]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21165]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21164]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21166]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21165]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21166]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21167]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21168]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21167]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21168]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21169]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21170]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21169]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21171]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21170]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21172]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21171]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21173]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21172]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21173]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21174]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21175]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21175]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21176]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21174]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21177]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21176]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21178]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21177]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21178]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21179]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21180]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21179]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21181]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21180]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21182]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21181]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21183]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21182]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21183]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21184]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21185]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21184]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21186]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21185]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21187]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21186]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21188]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21187]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21189]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21189]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21190]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21190]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21191]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21188]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21192]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21192]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21193]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21191]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21194]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21193]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21195]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21194]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21196]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21195]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21197]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21196]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21198]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21197]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21199]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21198]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21200]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21199]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21201]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21200]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21202]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21201]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21203]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21202]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21204]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21203]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21205]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21204]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21206]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21205]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21207]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21206]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21208]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21207]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21209]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21208]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21210]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21209]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21211]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21210]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21212]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21211]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21213]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21212]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21214]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21213]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21215]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21214]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21216]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21215]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21217]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21216]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21218]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21217]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21219]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21218]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21220]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21219]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21221]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21220]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21222]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21221]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21223]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21222]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21223]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21224]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21225]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21224]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21226]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21225]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21227]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21226]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21227]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21228]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21229]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21228]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21230]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21229]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21231]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21230]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21231]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21232]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21233]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21232]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21234]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21233]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21235]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21234]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21235]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21236]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21237]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21236]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21238]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21237]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21239]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21238]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21239]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21240]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21241]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21240]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21242]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21241]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21243]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21242]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21243]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21244]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21245]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21244]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21246]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21245]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21247]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21246]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21248]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21247]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21249]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21248]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21250]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21249]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21251]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21250]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21252]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21251]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21253]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21252]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21254]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21253]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21255]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21254]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21255]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21256]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21257]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21256]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21258]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21257]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21259]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21258]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21259]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21260]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21261]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21260]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21262]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21261]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21263]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21262]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21263]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21264]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21265]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21264]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21266]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21265]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21267]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21266]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21267]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21268]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21269]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21268]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21270]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21269]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21271]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21270]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21271]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21272]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21273]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21272]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21274]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21273]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21275]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21274]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21275]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21276]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21277]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21276]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21278]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21277]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21279]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21278]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21280]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21279]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21280]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21281]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21282]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21281]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21282]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21283]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21284]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21283]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21285]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21284]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21286]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21285]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21287]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21286]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21288]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21287]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21289]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21288]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21290]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21289]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21291]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21290]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21291]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21292]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21293]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21292]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21294]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21293]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21295]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21294]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21295]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21296]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21297]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21296]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21298]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21297]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21299]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21298]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21299]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21300]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21301]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21300]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21302]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21301]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21303]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21302]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21303]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21304]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21305]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21304]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21306]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21306]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21307]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21305]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21308]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21307]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21309]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21308]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21309]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21310]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21311]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21310]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21312]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21311]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21313]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21312]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21314]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21313]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21315]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21314]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21316]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21315]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21317]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21316]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21318]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21317]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21319]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21318]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21320]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21319]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21321]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21320]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21321]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21322]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21323]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21322]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21324]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21323]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21325]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21324]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21325]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21326]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21327]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21326]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21328]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21327]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21329]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21328]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21330]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21329]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21331]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21330]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21332]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21331]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21333]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21332]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21334]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21333]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21335]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21334]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21336]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21335]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21337]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21336]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21337]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21338]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21339]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21338]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21340]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21339]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21341]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21340]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21341]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21342]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21343]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21342]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21344]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21343]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21345]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21344]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21345]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21346]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21347]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21346]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21348]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21347]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21349]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21348]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21350]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21349]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21351]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21350]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21352]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21352]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21353]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21351]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21354]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21353]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21355]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21354]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21356]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21355]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21357]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21356]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21358]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21357]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21359]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21358]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21360]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21359]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21361]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21360]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21362]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21361]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21363]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21362]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21364]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21363]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21365]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21364]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21366]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21365]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21367]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21366]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21368]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21367]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21369]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21368]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21370]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21369]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21371]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21370]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21372]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21371]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21373]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21372]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21374]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21373]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21375]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21374]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21376]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21375]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21377]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21376]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21378]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21377]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21379]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21378]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21380]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21379]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21381]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21380]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21382]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21381]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21383]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21382]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21384]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21383]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21385]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21384]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21386]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21385]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21387]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21386]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21388]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21387]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21389]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21388]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21390]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21389]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21391]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21390]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21392]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21391]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21393]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21392]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21394]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21393]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21395]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21395]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21396]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21394]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21397]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21396]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21398]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21397]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21399]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21398]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21399]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21400]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21401]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21400]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21402]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21401]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21403]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21402]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21404]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21403]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21405]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21404]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21406]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21405]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21407]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21406]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21408]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21407]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21409]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21408]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21410]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21409]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21411]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21410]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21412]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21411]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21413]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21412]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21414]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21413]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21415]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21414]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21416]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21415]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21417]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21416]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21418]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21417]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21419]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21418]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21419]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21420]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21421]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21420]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21422]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21421]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21423]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21422]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21423]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21424]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21425]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21424]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21426]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21425]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21427]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21426]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21428]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21427]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21428]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21429]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21430]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21429]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21431]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21430]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21432]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21431]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21433]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21432]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21434]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21433]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21435]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21434]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21435]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21436]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21437]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21436]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21438]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21437]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21439]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21438]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21439]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21440]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21441]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21440]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21442]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21441]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21443]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21442]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21444]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21443]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21445]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21444]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21446]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21445]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21447]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21446]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21448]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21447]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21449]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21448]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21450]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21449]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21451]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21450]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21452]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21451]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21453]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21453]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21454]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21452]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21455]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21454]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21456]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21455]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21457]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21456]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21458]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21457]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21459]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21458]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21460]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21459]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21461]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21460]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21462]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21461]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21463]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21462]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21464]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21463]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21465]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21464]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21466]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21465]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21467]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21466]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21468]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21467]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21469]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21468]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21470]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21469]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21471]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21470]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21472]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21471]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21473]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21472]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21474]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21473]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21475]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21474]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21476]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21475]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21477]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21476]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21478]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21477]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21479]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21478]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21480]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21479]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21481]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21480]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21482]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21482]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21483]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21481]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21484]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21483]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21485]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21484]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21485]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21486]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21487]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21486]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21488]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21487]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21489]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21488]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21489]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21490]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21491]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21490]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21492]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21491]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21493]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21492]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21493]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21494]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21495]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21494]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21496]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21495]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21497]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21496]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21497]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21498]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21499]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21498]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21500]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21499]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21501]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21500]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21501]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21502]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21503]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21502]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21504]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21503]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21505]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21504]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21505]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21506]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21507]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21506]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21508]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21508]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21509]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21509]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21510]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21510]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21511]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21507]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21512]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21511]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21513]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21512]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21513]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21514]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21515]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21515]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21516]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21514]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21517]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21516]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21518]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21517]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21518]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21519]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21520]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21519]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21521]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21520]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21522]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21521]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21523]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21522]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21523]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21524]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21525]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21524]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21526]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21525]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21527]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21527]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21528]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21526]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21529]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21528]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21530]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21530]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21531]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21531]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21532]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21532]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21533]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21533]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21534]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21534]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21535]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21529]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21536]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21535]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21537]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21537]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21538]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21536]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21538]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21539]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21540]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21539]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21541]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21540]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21542]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21541]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21543]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21542]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21544]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21544]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21545]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21543]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21546]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21545]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21547]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21546]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21548]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21547]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21549]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21548]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21550]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21550]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21551]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21551]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21552]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21549]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21553]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21552]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21554]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21553]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21555]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21555]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21556]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21554]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21557]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21556]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21558]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21557]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21559]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21558]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21559]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21560]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21561]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21561]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21562]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21560]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21563]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21562]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21564]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21564]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21565]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21563]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21565]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21566]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21567]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21566]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21568]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21567]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21569]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21568]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21570]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21569]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21571]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21570]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21572]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21571]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21573]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21573]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21574]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21572]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21575]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21574]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21576]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21575]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21577]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21576]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21577]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21578]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21579]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21578]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21580]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21580]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21581]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21579]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21582]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21581]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21583]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21583]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21584]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21582]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21585]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21584]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21586]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21585]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21587]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21586]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21587]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21588]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21589]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21588]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21590]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21589]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21591]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21590]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21591]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21592]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21593]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21593]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21594]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21592]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21595]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21594]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21596]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21595]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21597]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21596]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21598]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21597]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21599]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21598]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21600]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21600]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21601]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21601]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21602]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21599]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21603]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21603]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21604]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21602]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21605]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21604]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21606]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21605]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21607]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21606]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21608]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21607]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21609]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21608]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21609]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21610]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21611]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21610]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21612]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21611]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21613]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21612]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21613]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21614]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21615]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21614]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21616]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21616]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21617]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21615]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21618]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21617]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21619]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21619]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21618]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21620]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21621]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21620]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21622]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21621]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21623]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21622]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21624]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21623]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21625]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21624]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21626]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21626]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21627]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21625]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21628]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21627]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21629]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21628]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21630]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21629]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21630]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21631]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21632]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21631]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21633]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21632]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21634]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21633]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21635]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21634]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21635]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21636]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21637]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21637]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21638]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21636]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21639]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21638]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21640]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21639]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21640]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21641]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21642]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21641]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21643]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21642]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21644]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21643]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21645]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21644]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21645]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21646]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21647]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21646]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21648]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21648]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21649]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21647]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21650]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21649]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21651]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21650]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21652]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21651]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21653]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21652]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21654]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21653]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21655]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21654]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21656]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21655]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21657]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21656]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21658]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21657]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21659]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21658]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21659]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21660]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21661]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21660]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21662]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21661]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21663]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21662]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21663]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21664]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21665]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21664]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21666]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21665]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21667]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21666]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21668]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21667]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21669]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21668]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21670]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21669]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21671]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21670]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21671]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21672]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21673]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21672]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21674]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21674]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21675]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21673]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21676]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21675]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21677]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21676]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21678]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21677]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21678]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21679]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21680]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21679]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21681]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21680]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21682]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21681]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21683]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21682]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21683]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21684]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21685]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21684]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21686]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21685]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21687]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21686]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21687]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21688]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21689]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21688]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21690]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21689]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21691]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21690]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21692]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21692]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21693]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21693]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21694]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21694]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21695]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21695]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21696]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21696]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21697]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21697]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21698]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21691]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21698]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21699]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21700]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21700]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21701]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21699]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21702]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21701]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21703]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21702]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21704]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21703]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21705]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21704]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21706]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21705]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21707]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21706]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21708]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21707]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21709]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21708]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21710]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21709]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21711]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21710]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21712]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21711]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21713]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21712]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21714]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21713]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21715]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21714]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21716]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21715]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21717]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21716]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21718]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21717]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21719]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21718]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21720]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21720]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21721]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21719]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21721]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21722]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21723]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21722]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21724]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21723]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21725]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21724]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21725]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21726]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21727]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21726]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21728]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21727]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21729]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21728]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21730]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21729]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21731]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21730]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21732]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21731]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21733]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21732]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21734]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21733]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21735]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21734]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21736]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21735]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21737]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21736]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21737]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21738]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21739]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21738]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21740]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21739]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21741]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21740]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21742]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21741]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21743]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21742]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21744]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21743]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21745]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21744]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21746]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21745]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21747]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21746]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21748]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21748]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21749]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21747]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21750]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21749]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21751]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21750]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21752]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21751]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21753]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21752]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21754]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21753]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21755]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21754]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21756]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21755]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21757]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21756]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21758]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21757]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21759]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21758]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21760]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21759]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21761]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21760]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21762]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21761]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21763]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21762]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21764]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21763]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21765]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21764]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21766]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21765]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21767]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21766]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21768]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21767]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21769]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21768]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21770]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21769]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21771]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21770]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21772]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21771]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21773]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21772]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21774]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21773]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21775]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21775]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21776]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21774]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21776]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21777]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21778]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21777]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21778]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21779]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21780]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21779]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21781]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21780]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21782]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21781]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21783]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21782]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21783]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21784]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21785]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21784]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21786]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21785]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21787]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21786]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21787]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21788]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21789]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21788]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21790]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21789]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21791]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21790]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21792]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21791]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21792]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21793]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21794]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21793]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21794]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21795]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21796]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21795]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21797]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21797]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21798]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21796]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21799]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21798]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21800]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21799]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21800]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21801]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21802]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21801]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21803]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21802]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21804]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21803]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21805]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21804]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21806]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21805]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21807]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21807]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21808]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21808]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21809]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21809]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21810]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21806]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21811]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21810]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21812]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21811]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21813]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21812]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21814]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21813]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21815]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21814]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21816]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21815]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21817]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21816]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21818]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21817]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21819]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21818]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21820]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21819]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21821]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21821]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21822]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21820]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21823]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21823]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21824]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21822]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21825]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21824]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21826]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21825]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21827]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21827]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21828]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21828]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21829]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21826]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21830]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21829]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21831]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21831]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21832]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21832]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21833]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21830]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21834]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21833]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21835]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21834]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21836]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21836]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21837]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21835]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21838]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21838]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21839]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21837]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21840]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21839]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21841]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21840]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21842]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21841]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21843]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21842]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21844]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21843]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21845]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21844]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21846]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21845]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21847]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21846]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21848]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21847]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21848]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21850]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21849]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21850]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21851]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21851]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21852]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21849]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21853]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21852]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21854]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21853]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21855]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21854]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21856]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21855]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21857]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21856]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21858]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21857]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21859]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21858]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21860]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21859]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21861]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21860]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21862]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21862]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21863]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21863]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21864]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21864]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21865]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21861]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21866]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21865]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21867]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21866]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21868]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21867]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21869]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21868]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21870]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21869]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21871]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21870]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21872]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21871]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21873]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21872]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21874]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21874]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21875]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21873]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21876]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21875]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21877]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21876]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21878]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21877]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21879]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21878]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21880]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21879]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21881]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21880]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21881]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21882]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21883]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21882]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21884]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21883]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21885]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21884]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21885]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21886]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21887]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21886]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21888]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21887]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21889]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21888]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21890]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21890]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21891]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21891]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21892]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21889]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21893]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21892]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21894]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21894]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21895]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21893]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21896]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21896]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21897]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21895]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21898]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21897]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21899]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21898]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21900]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21899]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21901]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21900]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21902]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21901]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21903]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21902]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21904]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21903]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21905]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21904]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21905]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21906]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21907]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21906]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21908]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21907]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21909]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21908]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21910]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21909]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21911]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21910]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21912]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21911]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21913]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21912]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21914]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21913]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21915]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21914]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21916]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21915]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21917]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21917]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21918]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21918]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21919]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21919]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21920]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21916]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21921]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21920]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21922]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21922]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21923]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21921]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21923]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21924]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21925]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21924]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21926]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21925]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21927]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21926]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21928]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21927]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21929]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21928]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21930]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21929]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21931]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21930]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21932]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21931]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21933]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21932]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21934]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21933]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21935]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21934]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21936]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21935]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21937]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21936]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21938]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21937]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21939]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21938]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21940]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21939]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21941]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21940]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21942]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21941]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21943]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21942]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21944]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21943]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21945]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21945]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21946]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21944]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21947]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21946]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21948]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21947]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21949]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21948]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21950]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21949]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21951]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21950]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21951]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21952]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21953]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21952]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21954]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21953]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21955]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21954]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21955]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21956]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21957]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21956]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21958]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21957]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21959]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21958]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21960]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21959]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21961]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21960]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21962]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21962]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21963]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21961]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21964]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21963]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21965]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21964]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21966]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21965]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21967]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21966]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21968]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21967]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21969]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21969]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21970]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21968]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21971]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21970]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21972]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21971]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21973]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21972]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21974]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21974]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21975]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21975]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21976]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21976]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21977]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21973]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21977]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21978]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 21979]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21978]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21980]]} + {:process 0 :type :fail :f :txn :value [[:append 0 21979]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21981]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21980]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 21982]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21981]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 21983]]} + {:process 3 :type :fail :f :txn :value [[:append 5 21982]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21984]]} + {:process 0 :type :fail :f :txn :value [[:append 5 21983]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21985]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21984]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 21986]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21985]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 21987]]} + {:process 3 :type :fail :f :txn :value [[:append 2 21986]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21988]]} + {:process 0 :type :fail :f :txn :value [[:append 2 21987]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 21989]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21988]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 21990]]} + {:process 0 :type :fail :f :txn :value [[:append 1 21989]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 21991]]} + {:process 0 :type :fail :f :txn :value [[:append 7 21991]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 21992]]} + {:process 3 :type :fail :f :txn :value [[:append 7 21990]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 21993]]} + {:process 3 :type :fail :f :txn :value [[:append 6 21993]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 21994]]} + {:process 0 :type :fail :f :txn :value [[:append 6 21992]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 21994]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 21995]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 21996]]} + {:process 3 :type :fail :f :txn :value [[:append 3 21995]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 21997]]} + {:process 0 :type :fail :f :txn :value [[:append 4 21996]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 21998]]} + {:process 3 :type :fail :f :txn :value [[:append 1 21997]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 21999]]} + {:process 0 :type :fail :f :txn :value [[:append 3 21998]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 21999]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22000]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22001]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22000]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22002]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22002]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22003]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22003]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22004]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22004]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22005]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22001]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22006]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22005]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22007]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22006]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22008]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22007]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22009]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22008]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22010]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22009]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22011]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22010]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22012]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22011]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22013]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22012]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22014]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22013]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22015]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22015]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22016]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22014]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22017]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22016]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22018]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22017]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22019]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22018]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22020]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22019]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22020]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22021]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22022]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22021]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22023]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22022]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22024]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22023]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22025]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22024]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22026]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22025]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22027]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22026]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22028]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22027]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22029]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22028]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22030]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22029]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22031]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22030]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22032]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22031]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22033]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22033]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22034]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22034]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22035]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22035]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22036]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22032]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22036]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22037]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22038]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22037]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22038]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22039]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22040]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22039]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22041]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22040]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22042]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22041]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22043]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22042]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22044]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22043]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22045]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22044]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22046]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22045]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22047]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22046]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22048]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22047]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22049]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22048]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22050]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22049]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22051]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22050]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22051]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22052]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22053]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22052]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22054]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22053]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22055]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22054]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22056]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22055]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22057]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22056]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22058]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22057]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22059]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22058]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22060]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22060]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22061]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22059]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22062]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22061]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22063]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22062]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22064]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22063]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22065]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22064]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22066]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22065]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22067]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22066]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22068]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22067]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22069]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22068]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22070]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22069]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22071]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22070]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22072]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22071]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22073]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22072]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22074]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22073]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22075]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22074]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22076]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22076]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22075]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22077]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22078]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22077]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22079]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22078]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22079]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22080]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22081]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22080]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22082]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22081]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22083]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22082]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22083]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22084]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22085]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22084]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22086]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22086]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22087]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22085]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22088]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22087]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22089]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22089]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22090]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22090]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22091]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22091]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22092]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22088]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22093]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22092]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22094]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22093]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22095]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22094]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22096]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22095]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22097]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22096]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22098]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22097]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22099]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22098]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22099]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22100]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22101]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22100]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22102]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22101]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22103]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22102]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22104]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22103]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22105]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22104]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22106]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22105]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22107]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22107]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22108]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22106]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22109]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22108]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22110]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22109]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22111]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22110]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22112]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22111]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22113]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22112]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22114]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22113]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22115]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22115]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22116]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22116]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22117]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22117]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22114]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22118]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22119]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22118]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22120]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22119]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22121]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22120]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22122]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22121]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22123]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22122]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22124]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22123]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22125]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22124]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22125]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22126]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22127]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22126]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22128]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22127]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22129]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22128]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22129]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22130]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22131]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22130]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22132]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22132]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22133]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22131]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22134]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22133]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22135]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22134]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22136]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22135]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22137]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22136]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22138]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22137]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22139]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22138]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22140]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22139]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22141]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22140]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22142]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22141]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22143]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22142]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22144]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22143]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22145]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22145]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22146]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22146]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22147]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22147]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22148]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22148]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22149]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22144]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22150]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22149]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22151]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22150]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22152]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22152]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22153]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22151]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22153]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22154]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22155]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22154]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22156]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22155]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22157]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22156]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22157]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22158]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22159]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22158]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22160]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22159]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22160]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22162]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22162]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22163]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22163]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22164]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22164]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22165]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22165]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22166]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22166]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22167]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22167]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22168]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22161]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22168]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22169]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22161]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22170]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22169]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22171]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22170]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22172]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22171]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22173]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22173]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22174]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22172]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22174]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22175]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22176]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22175]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22177]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22177]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22178]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22176]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22178]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22179]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22180]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22179]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22181]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22181]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22182]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22182]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22183]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22180]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22184]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22183]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22184]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22185]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22186]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22186]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22187]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22185]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22188]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22187]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22189]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22188]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22189]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22190]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22190]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22192]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22191]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22192]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22193]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22191]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22194]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22193]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22195]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22194]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22196]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22195]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22197]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22196]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22198]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22198]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22199]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22197]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22200]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22199]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22201]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22200]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22202]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22201]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22203]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22202]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22204]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22203]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22205]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22204]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22206]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22205]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22207]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22207]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22208]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22208]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22209]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22209]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22210]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22210]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22211]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22206]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22212]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22211]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22213]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22212]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22214]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22213]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22215]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22214]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22216]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22215]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22217]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22216]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22218]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22217]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22219]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22218]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22220]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22219]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22221]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22221]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22222]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22220]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22223]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22222]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22224]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22223]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22225]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22224]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22226]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22225]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22227]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22226]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22228]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22227]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22229]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22228]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22230]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22229]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22231]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22230]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22232]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22231]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22233]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22232]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22234]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22233]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22235]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22234]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22236]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22235]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22237]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22236]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22238]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22238]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22239]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22239]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22240]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22240]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22241]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22237]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22242]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22241]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22243]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22243]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22244]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22242]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22245]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22244]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22246]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22245]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22247]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22246]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22247]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22248]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22249]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22248]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22250]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22249]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22251]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22250]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22252]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22251]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22253]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22252]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22254]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22253]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22255]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22254]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22256]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22255]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22256]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22257]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22258]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22257]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22259]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22258]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22259]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22260]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22261]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22260]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22262]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22261]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22263]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22262]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22264]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22264]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22265]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22265]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22266]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22266]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22267]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22263]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22267]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22268]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22269]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22268]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22270]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22269]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22271]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22270]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22271]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22272]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22273]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22272]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22274]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22273]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22275]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22274]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22276]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22275]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22277]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22276]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22278]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22277]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22279]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22278]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22280]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22279]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22281]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22280]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22282]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22281]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22283]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22282]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22284]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22283]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22285]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22284]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22286]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22285]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22287]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22286]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22288]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22287]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22289]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22288]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22290]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22289]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22291]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22291]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22292]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22290]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22293]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22292]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22294]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22294]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22295]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22295]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22296]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22296]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22297]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22297]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22298]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22293]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22299]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22298]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22300]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22299]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22301]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22300]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22302]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22301]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22303]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22302]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22304]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22303]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22304]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22305]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22306]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22305]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22306]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22308]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22307]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22308]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22309]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22309]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22310]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22307]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22311]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22310]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22312]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22312]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22313]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22311]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22314]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22313]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22315]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22314]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22316]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22316]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22317]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22315]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22318]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22317]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22319]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22318]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22320]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22319]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22321]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22320]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22322]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22321]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22323]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22323]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22324]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22324]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22325]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22325]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22326]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22322]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22327]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22326]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22328]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22327]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22329]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22328]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22329]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22330]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22331]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22330]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22332]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22331]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22333]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22333]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22334]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22332]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22335]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22334]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22336]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22335]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22337]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22336]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22338]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22337]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22339]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22338]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22340]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22339]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22341]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22340]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22342]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22341]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22343]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22342]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22344]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22343]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22345]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22344]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22346]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22345]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22347]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22346]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22348]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22347]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22349]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22348]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22350]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22349]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22351]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22351]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22352]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22352]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22353]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22353]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22354]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22350]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22355]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22354]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22356]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22355]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22357]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22356]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22358]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22358]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22359]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22357]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22360]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22359]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22361]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22360]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22361]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22362]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22363]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22362]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22364]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22363]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22365]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22364]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22365]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22366]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22367]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22366]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22368]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22367]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22369]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22368]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22370]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22369]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22371]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22370]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22372]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22371]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22373]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22372]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22374]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22373]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22375]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22374]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22376]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22375]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22377]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22376]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22377]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22378]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22379]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22378]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22380]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22379]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22381]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22380]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22382]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22382]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22383]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22383]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22384]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22381]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22385]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22384]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22386]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22385]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22387]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22386]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22388]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22387]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22389]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22388]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22390]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22389]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22391]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22390]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22392]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22391]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22393]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22392]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22394]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22393]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22395]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22394]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22395]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22396]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22397]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22396]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22398]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22397]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22399]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22398]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22399]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22400]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22401]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22400]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22402]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22401]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22403]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22402]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22404]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22403]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22405]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22404]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22406]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22406]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22407]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22405]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22408]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22407]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22409]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22409]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22410]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22410]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22411]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22411]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22412]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22408]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22413]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22412]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22414]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22413]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22415]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22414]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22415]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22416]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22417]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22417]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22418]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22416]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22419]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22418]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22420]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22419]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22421]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22420]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22422]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22421]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22423]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22422]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22423]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22424]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22425]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22424]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22426]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22425]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22427]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22426]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22428]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22427]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22429]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22429]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22430]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22428]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22431]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22431]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22432]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22430]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22433]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22432]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22434]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22433]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22435]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22434]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22436]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22435]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22437]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22437]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22438]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22438]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22439]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22439]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22440]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22436]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22441]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22440]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22442]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22441]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22443]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22442]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22444]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22443]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22445]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22444]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22446]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22445]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22447]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22446]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22448]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22447]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22449]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22448]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22449]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22450]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22451]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22450]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22452]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22452]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22451]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22453]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22454]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22453]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22455]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22454]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22456]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22455]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22457]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22456]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22458]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22457]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22459]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22458]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22460]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22459]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22461]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22460]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22462]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22461]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22463]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22462]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22464]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22463]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22465]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22464]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22466]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22465]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22467]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22467]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22468]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22468]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22469]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22469]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22470]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22466]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22471]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22470]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22472]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22472]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22473]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22471]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22474]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22473]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22474]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22475]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22476]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22475]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22476]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22477]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22478]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22477]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22479]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22478]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22480]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22479]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22481]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22480]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22481]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22482]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22483]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22482]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22484]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22483]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22485]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22484]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22486]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22485]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22487]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22486]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22488]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22487]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22489]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22488]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22489]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22490]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22491]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22490]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22492]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22491]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22493]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22492]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22494]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22493]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22495]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22494]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22496]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22496]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22497]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22497]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22498]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22498]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22499]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22495]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22500]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22499]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22501]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22500]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22502]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22501]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22503]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22502]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22504]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22503]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22505]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22504]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22506]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22505]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22507]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22506]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22508]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22507]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22509]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22508]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22510]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22509]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22511]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22510]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22512]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22511]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22513]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22512]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22514]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22513]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22515]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22514]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22516]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22515]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22517]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22516]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22518]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22517]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22519]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22518]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22520]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22519]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22521]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22520]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22522]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22521]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22523]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22522]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22524]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22523]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22525]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22525]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22526]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22524]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22527]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22526]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22528]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22527]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22529]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22528]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22529]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22530]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22531]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22530]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22531]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22532]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22533]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22532]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22534]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22533]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22535]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22534]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22536]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22535]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22537]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22536]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22538]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22537]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22539]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22538]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22540]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22539]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22541]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22540]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22542]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22541]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22543]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22542]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22544]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22543]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22545]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22544]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22546]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22545]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22547]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22546]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22548]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22547]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22549]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22549]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22550]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22548]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22551]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22551]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22552]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22550]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22553]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22553]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22554]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22552]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22555]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22554]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22556]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22555]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22557]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22556]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22558]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22557]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22559]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22558]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22560]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22559]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22561]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22560]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22562]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22561]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22563]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22562]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22564]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22563]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22565]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22564]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22565]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22566]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22567]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22566]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22568]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22567]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22569]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22568]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22570]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22569]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22571]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22570]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22572]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22572]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22573]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22571]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22574]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22573]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22575]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22574]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22576]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22575]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22577]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22577]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22578]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22578]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22579]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22579]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22580]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22576]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22581]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22580]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22582]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22581]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22583]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22582]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22584]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22583]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22585]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22584]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22586]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22585]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22587]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22586]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22588]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22588]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22587]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22589]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22590]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22590]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22591]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22589]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22592]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22591]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22593]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22592]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22594]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22593]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22595]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22595]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22596]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22594]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22597]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22596]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22598]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22597]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22599]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22598]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22600]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22599]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22601]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22600]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22602]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22601]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22603]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22602]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22603]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22604]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22605]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22604]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22606]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22605]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22607]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22606]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22608]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22608]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22609]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22609]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22610]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22610]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22611]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22607]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22611]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22612]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22613]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22612]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22614]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22613]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22615]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22614]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22616]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22616]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22617]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22615]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22618]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22618]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22619]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22617]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22620]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22619]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22621]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22620]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22622]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22621]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22623]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22622]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22624]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22623]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22625]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22624]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22626]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22625]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22627]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22626]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22628]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22627]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22629]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22628]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22630]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22629]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22631]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22630]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22632]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22631]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22633]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22632]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22634]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22633]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22635]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22634]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22636]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22635]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22637]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22637]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22638]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22638]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22639]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22639]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22640]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22640]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22641]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22636]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22642]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22641]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22643]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22642]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22644]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22643]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22645]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22644]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22645]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22646]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22647]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22646]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22648]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22647]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22649]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22648]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22650]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22649]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22651]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22650]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22652]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22651]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22653]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22652]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22654]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22653]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22655]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22654]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22656]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22655]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22657]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22656]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22658]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22657]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22659]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22658]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22660]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22659]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22661]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22660]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22662]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22661]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22663]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22662]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22664]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22663]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22665]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22664]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22666]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22666]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22667]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22665]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22668]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22667]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22669]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22669]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22670]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22668]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22671]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22670]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22672]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22671]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22673]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22672]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22674]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22673]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22675]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22674]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22676]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22675]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22677]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22676]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22678]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22677]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22679]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22678]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22680]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22679]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22681]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22680]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22682]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22681]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22683]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22682]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22684]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22683]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22685]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22684]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22686]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22685]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22687]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22686]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22688]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22687]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22689]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22689]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22690]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22690]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22691]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22691]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22692]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22688]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22693]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22692]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22694]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22693]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22695]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22694]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22696]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22695]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22697]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22696]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22698]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22697]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22699]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22698]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22700]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22699]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22701]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22700]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22702]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22701]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22703]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22702]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22704]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22703]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22705]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22704]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22706]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22705]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22707]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22706]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22707]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22708]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22709]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22708]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22710]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22709]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22711]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22710]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22711]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22712]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22713]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22712]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22714]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22713]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22715]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22714]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22716]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22715]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22717]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22716]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22718]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22718]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22719]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22717]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22720]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22719]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22721]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22720]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22722]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22721]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22723]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22722]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22724]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22723]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22725]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22724]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22726]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22725]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22727]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22726]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22728]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22727]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22729]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22728]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22730]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22729]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22731]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22730]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22732]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22731]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22733]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22732]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22734]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22733]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22735]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22734]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22736]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22735]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22737]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22736]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22738]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22738]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22739]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22737]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22740]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22739]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22741]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22740]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22742]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22741]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22743]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22742]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22744]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22744]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22745]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22745]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22746]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22746]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22747]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22743]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22748]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22747]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22749]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22748]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22750]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22749]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22751]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22750]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22752]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22751]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22753]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22752]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22754]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22753]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22755]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22754]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22756]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22755]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22756]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22757]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22758]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22758]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22759]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22759]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22757]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22760]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22761]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22760]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22762]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22761]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22763]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22762]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22764]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22763]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22765]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22765]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22766]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22764]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22767]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22767]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22768]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22766]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22769]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22768]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22770]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22769]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22771]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22770]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22772]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22771]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22773]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22772]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22774]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22774]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22775]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22775]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22776]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22776]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22777]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22773]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22778]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22777]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22779]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22778]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22780]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22779]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22781]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22780]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22782]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22781]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22783]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22782]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22784]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22783]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22785]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22784]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22786]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22785]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22787]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22787]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22788]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22786]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22788]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22789]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22790]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22789]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22791]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22790]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22792]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22791]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22793]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22792]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22794]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22793]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22795]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22794]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22796]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22795]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22797]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22796]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22798]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22797]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22799]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22798]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22800]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22799]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22801]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22800]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22802]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22801]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22803]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22802]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22804]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22804]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22805]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22805]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22806]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22806]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22807]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22803]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22808]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22808]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22809]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22807]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22810]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22809]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22811]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22810]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22812]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22811]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22813]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22812]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22814]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22813]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22815]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22815]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22814]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22816]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22817]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22816]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22818]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22817]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22819]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22818]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22820]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22819]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22821]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22820]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22821]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22822]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22823]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22822]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22824]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22823]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22825]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22824]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22826]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22825]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22827]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22826]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22828]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22827]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22829]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22829]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22830]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22830]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22831]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22831]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22828]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22832]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22833]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22832]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22834]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22834]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22835]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22833]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22836]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22835]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22837]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22836]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22838]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22837]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22839]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22838]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22840]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22839]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22841]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22840]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22842]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22841]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22843]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22842]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22844]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22843]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22845]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22844]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22846]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22845]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22847]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22846]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22848]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22847]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22849]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22848]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22850]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22849]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22851]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22850]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22852]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22851]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22853]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22852]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22854]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22853]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22855]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22854]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22856]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22855]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22857]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22856]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22858]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22857]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22859]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22858]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22860]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22859]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22861]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22860]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22862]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22861]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22863]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22862]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22864]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22863]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22865]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22864]]} + {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22866]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22865]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22867]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22866]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22868]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22867]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22869]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22868]]} + {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22870]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22869]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22871]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22870]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22872]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22871]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22873]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22873]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22872]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22874]]} + {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22875]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22874]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22876]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22875]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22877]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22876]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22877]]} + {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22878]]} + {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22879]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22878]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22880]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22879]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22881]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22880]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22882]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22882]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22883]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22883]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22884]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22881]]} + {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22885]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22884]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22886]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22885]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22887]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22886]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22888]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22888]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22889]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22889]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22890]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22890]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22891]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22887]]} + {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22891]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22892]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22893]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22892]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22894]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22893]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22895]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22894]]} + {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22896]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22895]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22897]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22896]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22898]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22897]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22899]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22898]]} + {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22900]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22899]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22901]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22900]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22902]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22901]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22903]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22903]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22904]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22902]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9289]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9289]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9290]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9290]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22905]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22904]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22906]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22905]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22907]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22906]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22907]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22908]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9291]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9291]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9292]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9292]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22909]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22908]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22910]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22909]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22911]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22910]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22912]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22911]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9293]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9293]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9294]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9294]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22913]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22912]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22914]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22913]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22915]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22914]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22915]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22916]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9295]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9295]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9296]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9296]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22917]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22916]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22918]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22918]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22919]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22919]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22920]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22920]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22921]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22917]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22922]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22921]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22923]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22922]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9297]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9297]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9298]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9298]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22924]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22923]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22925]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22925]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22926]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22924]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22927]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22926]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22927]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22928]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9299]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9299]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9300]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9300]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22929]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22929]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22930]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22928]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22931]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22930]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9301]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9301]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9302]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9302]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22932]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22931]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22933]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22932]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22934]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22933]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22935]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22934]]} {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9303]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9303]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9304]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9304]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22936]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22935]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22937]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22936]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22938]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22937]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22939]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22938]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9305]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9305]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9306]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9306]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22940]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22939]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22941]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22940]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22942]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22941]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22943]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22942]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9307]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9307]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9308]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9308]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22944]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22943]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22945]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22944]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22946]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22945]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22947]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22947]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22948]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22948]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22949]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22949]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22950]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22946]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9309]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9309]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9310]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9310]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22951]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22950]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22952]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22951]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22953]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22952]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22954]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22953]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9311]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9311]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9312]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9312]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22955]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22954]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22956]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22955]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22957]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22956]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22957]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22958]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9313]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9313]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9314]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9314]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22959]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22958]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22960]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22959]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22961]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22960]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22961]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22962]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9315]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9315]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9316]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9316]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22963]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22962]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22964]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22963]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22965]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22964]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22965]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22966]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9317]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9317]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9318]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9318]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22967]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22966]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22968]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22967]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22969]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22968]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22970]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22969]]} {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9319]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9319]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9320]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9320]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22971]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22970]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22972]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22972]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22973]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22971]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22974]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22973]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22975]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22975]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22976]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22976]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22977]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22977]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22974]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 22978]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9321]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9321]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9322]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9322]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 22979]]} + {:process 0 :type :fail :f :txn :value [[:append 4 22978]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22980]]} + {:process 3 :type :fail :f :txn :value [[:append 0 22979]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22981]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22980]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 22982]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22981]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9323]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9323]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9324]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9324]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 22983]]} + {:process 0 :type :fail :f :txn :value [[:append 1 22982]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22984]]} + {:process 3 :type :fail :f :txn :value [[:append 5 22983]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22985]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22984]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22985]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9325]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9325]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9326]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9326]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 22987]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 22986]]} + {:process 3 :type :fail :f :txn :value [[:append 2 22987]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22988]]} + {:process 0 :type :fail :f :txn :value [[:append 6 22986]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22989]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22988]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9327]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9327]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9328]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9328]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 22990]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22989]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 22991]]} + {:process 3 :type :fail :f :txn :value [[:append 7 22990]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 22992]]} + {:process 0 :type :fail :f :txn :value [[:append 3 22991]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 22993]]} + {:process 3 :type :fail :f :txn :value [[:append 6 22992]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9329]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9329]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9330]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9330]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 22994]]} + {:process 0 :type :fail :f :txn :value [[:append 2 22993]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 22995]]} + {:process 3 :type :fail :f :txn :value [[:append 4 22994]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 22996]]} + {:process 0 :type :fail :f :txn :value [[:append 0 22995]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 22997]]} + {:process 0 :type :fail :f :txn :value [[:append 7 22997]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 22998]]} + {:process 3 :type :fail :f :txn :value [[:append 3 22996]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9331]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9331]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9332]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9332]]} + {:process 0 :type :fail :f :txn :value [[:append 5 22998]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 22999]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23000]]} + {:process 3 :type :fail :f :txn :value [[:append 1 22999]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23001]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23000]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23002]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23001]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9333]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9333]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9334]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9334]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23003]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23002]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23004]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23004]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23005]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23005]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23006]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23006]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23007]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23003]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23008]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23007]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23009]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23008]]} {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9335]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9335]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9336]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9336]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23010]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23009]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23011]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23010]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23012]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23011]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23013]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23012]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9337]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9337]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9338]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9338]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23014]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23013]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23015]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23014]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23016]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23015]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23017]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23016]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9339]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9339]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9340]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9340]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23018]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23017]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23019]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23018]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23020]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23020]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9341]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9341]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9342]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9342]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23021]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23019]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23022]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23021]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23023]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23022]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23023]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23024]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9343]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9343]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9344]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9344]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23025]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23024]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23026]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23025]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23027]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23026]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23027]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23028]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9345]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9345]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9346]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9346]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23029]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23028]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23030]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23029]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23031]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23030]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23032]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23032]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23033]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23033]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23034]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23034]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23035]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23031]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9347]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9347]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9348]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9348]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23036]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23035]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23037]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23036]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23038]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23037]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23039]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23038]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9349]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9349]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9350]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9350]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23040]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23039]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23041]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23040]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23042]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23042]]} {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9351]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9351]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9352]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9352]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23043]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23041]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23044]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23043]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23045]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23044]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23045]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23046]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9353]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9353]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9354]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9354]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23047]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23046]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23048]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23047]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23049]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23048]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23050]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23049]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9355]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9355]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9356]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9356]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23051]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23050]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23052]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23051]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23053]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23052]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23054]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23053]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9357]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9357]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9358]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9358]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23055]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23054]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23056]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23055]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23057]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23056]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23058]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23057]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9359]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9359]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9360]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9360]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23059]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23058]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23060]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23060]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23061]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23061]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23062]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23062]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23059]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23063]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23064]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23064]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23065]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23063]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9361]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9361]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9362]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9362]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23066]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23066]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23067]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23065]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23068]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23067]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9363]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9363]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9364]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9364]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23069]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23068]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23070]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23069]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23071]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23070]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23072]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23071]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9365]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9365]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9366]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9366]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23073]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23072]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23074]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23073]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23075]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23074]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23075]]} {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23076]]} {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9367]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9367]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9368]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9368]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23077]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23076]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23078]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23077]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23079]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23078]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23079]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23080]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9369]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9369]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9370]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9370]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23081]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23080]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23082]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23081]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23083]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23082]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23083]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23084]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9371]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9371]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9372]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9372]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23085]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23084]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23086]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23085]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23087]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23086]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23088]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23088]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23089]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23089]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23090]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23087]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9373]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9373]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9374]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9374]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23091]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23090]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23092]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23092]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23091]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23093]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23094]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23093]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23095]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23094]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9375]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9375]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9376]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9376]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23095]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23096]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23097]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23096]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23098]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23097]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23099]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23098]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9377]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9377]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9378]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9378]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23100]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23099]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23100]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23101]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23102]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23101]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9379]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9379]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9380]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9380]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23103]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23102]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23104]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23103]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23105]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23104]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23105]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23106]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9381]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9381]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9382]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9382]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23107]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23106]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23108]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23107]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23109]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23108]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23109]]} {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9383]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9383]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9384]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9384]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23111]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23110]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23111]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23112]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23110]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23113]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23113]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23114]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23114]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23115]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23115]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23116]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23112]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9385]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9385]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9386]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9386]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23117]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23116]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23118]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23118]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23119]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23117]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23120]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23119]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23121]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23120]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9387]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9387]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9388]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9388]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23122]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23121]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23123]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23122]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23124]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23123]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23125]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23124]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9389]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9389]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9390]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9390]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23126]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23125]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23127]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23126]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23128]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23127]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23129]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23128]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9391]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9391]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9392]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9392]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23130]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23129]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23131]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23130]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23132]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23131]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23133]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23132]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9393]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9393]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9394]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9394]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23134]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23133]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23135]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23134]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23136]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23135]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23137]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23136]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9395]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9395]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9396]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9396]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23138]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23137]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23139]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23138]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23140]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23139]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23141]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23140]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9397]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9397]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9398]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9398]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23142]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23141]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23143]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23142]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23144]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23143]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23145]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23144]]} {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9399]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9399]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9400]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9400]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23146]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23145]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23147]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23146]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23148]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23147]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23149]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23148]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9401]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9401]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9402]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9402]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23150]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23149]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23151]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23150]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23152]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23151]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23153]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23152]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9403]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9403]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9404]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9404]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23154]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23153]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23155]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23154]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23156]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23155]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23157]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23157]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23156]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23158]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9405]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9405]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9406]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9406]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23159]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23158]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23160]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23159]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23161]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23160]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23161]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23162]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9407]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9407]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9408]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9408]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23163]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23162]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23164]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23163]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23165]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23164]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23165]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23166]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9409]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9409]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9410]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9410]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23167]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23166]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23168]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23168]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23169]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23167]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23170]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23169]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23171]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23171]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23172]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23172]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23173]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23173]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23170]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23174]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9411]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9411]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9412]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9412]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23175]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23174]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23176]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23175]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23177]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23176]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23177]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23178]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9413]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9413]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9414]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9414]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23179]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23178]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23180]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23179]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23181]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23180]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23181]]} {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23182]]} {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9415]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9415]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9416]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9416]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23183]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23182]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23184]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23183]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23185]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23184]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23185]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23186]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9417]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9417]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9418]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9418]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23187]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23186]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23188]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23188]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23189]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23187]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23190]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23189]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23191]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23190]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9419]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9419]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9420]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9420]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23192]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23191]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23193]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23192]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23194]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23193]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23195]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23194]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9421]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9421]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9422]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9422]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23196]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23195]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23197]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23196]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23198]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23197]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23199]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23198]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9423]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9423]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9424]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9424]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23200]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23199]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23201]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23201]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23202]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23202]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23203]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23203]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23204]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23204]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23205]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23200]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23206]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23205]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23207]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23207]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23208]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23206]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9425]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9425]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9426]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9426]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23209]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23208]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23210]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23209]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23211]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23210]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23212]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23211]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9427]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9427]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9428]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9428]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23213]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23212]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23214]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23213]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23214]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23215]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23216]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23215]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9429]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9429]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9430]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9430]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23217]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23216]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23218]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23217]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23219]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23218]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23220]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23219]]} {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9431]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9431]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9432]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9432]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23221]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23220]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23222]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23221]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23223]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23222]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23224]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23223]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9433]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9433]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9434]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9434]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23225]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23224]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23226]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23225]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23227]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23226]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23228]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23227]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9435]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9435]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9436]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9436]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23229]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23228]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23230]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23229]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23231]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23230]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23232]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23232]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23233]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23231]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9437]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9437]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9438]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9438]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23233]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23234]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23235]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23234]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23236]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23235]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23237]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23236]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9439]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9439]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9440]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9440]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23238]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23237]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23239]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23238]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23240]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23239]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23241]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23240]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9441]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9441]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9442]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9442]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23242]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23241]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23243]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23242]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23244]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23243]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23245]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23244]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9443]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9443]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9444]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9444]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23246]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23245]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23247]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23246]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23248]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23247]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23249]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23248]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9445]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9445]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9446]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9446]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23250]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23249]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23251]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23250]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23252]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23251]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23253]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23252]]} {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9447]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9447]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9448]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9448]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23254]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23253]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23255]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23254]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23256]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23255]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23257]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23257]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23258]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23258]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23259]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23256]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9449]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9449]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9450]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9450]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23260]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23259]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23261]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23261]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23262]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23260]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23263]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23262]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23264]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23263]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9451]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9451]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9452]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9452]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23265]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23264]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23266]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23265]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23267]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23266]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23267]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23268]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9453]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9453]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9454]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9454]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23269]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23268]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23270]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23269]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23271]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23270]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23271]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9455]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9455]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9456]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9456]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23272]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23273]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23272]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23274]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23273]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23275]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23274]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9457]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9457]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9458]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9458]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23276]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23275]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23277]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23276]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23278]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23277]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23279]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23278]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9459]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9459]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9460]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9460]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23280]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23279]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23281]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23280]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23282]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23281]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23283]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23283]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23284]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23282]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9461]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9461]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9462]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9462]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23285]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23284]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23286]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23286]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23287]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23287]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23288]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23288]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23289]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23285]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23290]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23289]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23291]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23290]]} {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9463]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9463]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9464]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9464]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23292]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23291]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23293]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23292]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23294]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23293]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23295]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23294]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9465]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9465]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9466]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9466]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23296]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23295]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23297]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23296]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23298]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23297]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23299]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23298]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9467]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9467]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9468]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9468]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23300]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23299]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23301]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23300]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23302]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23301]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23303]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23302]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9469]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9469]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9470]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9470]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23304]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23303]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23305]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23305]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23306]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23304]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23307]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23306]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23308]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23307]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9471]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9471]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9472]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9472]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23309]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23308]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23310]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23309]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23311]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23310]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23311]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23312]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9473]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9473]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9474]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9474]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23313]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23312]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23314]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23313]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23315]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23314]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23316]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23316]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23317]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23317]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23318]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23318]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23319]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23315]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9475]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9475]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9476]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9476]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23319]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23320]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23321]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23320]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23322]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23321]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23323]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23322]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9477]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9477]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9478]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9478]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23324]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23323]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23325]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23324]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23326]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23325]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23327]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23327]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23328]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23326]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23328]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23329]]} {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9479]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9479]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9480]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9480]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23330]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23329]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23331]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23330]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23332]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23331]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23333]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23332]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9481]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9481]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9482]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9482]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23334]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23333]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23335]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23334]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23336]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23335]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23337]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23336]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9483]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9483]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9484]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9484]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23338]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23337]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23339]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23338]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23340]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23339]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23341]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23340]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9485]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9485]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9486]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9486]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23342]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23341]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23343]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23342]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23344]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23343]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23345]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23344]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9487]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9487]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9488]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9488]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23346]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23345]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23347]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23347]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23348]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23348]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23346]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23349]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23350]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23349]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23351]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23350]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9489]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9489]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9490]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9490]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23352]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23351]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23353]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23352]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23354]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23353]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23355]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23354]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9491]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9491]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9492]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9492]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23356]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23355]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23357]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23356]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23358]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23357]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23359]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23358]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9493]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9493]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9494]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9494]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23360]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23359]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23361]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23360]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23362]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23361]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23363]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23362]]} {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9495]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9495]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9496]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9496]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23364]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23363]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23365]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23364]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23366]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23365]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23367]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23366]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9497]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9497]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9498]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9498]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23368]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23367]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23369]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23368]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23370]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23369]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23371]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23370]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9499]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9499]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9500]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9500]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23372]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23371]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23373]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23372]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23374]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23373]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23375]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23374]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9501]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9501]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9502]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9502]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23376]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23375]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23377]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23376]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23378]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23377]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23379]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23378]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9503]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9503]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9504]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9504]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23380]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23379]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23381]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23380]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23382]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23381]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23383]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23382]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9505]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9505]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9506]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9506]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23384]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23383]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23385]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23385]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23386]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23384]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23387]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23386]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23388]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23387]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9507]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9507]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9508]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9508]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23389]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23388]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23390]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23389]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23391]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23390]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23392]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23391]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9509]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9509]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9510]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9510]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23393]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23392]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23394]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23393]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23395]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23394]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23396]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23395]]} {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9511]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9511]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9512]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9512]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23397]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23396]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23398]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23398]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23399]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23397]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23400]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23399]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23401]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23401]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23402]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23402]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23403]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23403]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23404]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23400]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9513]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9513]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9514]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9514]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23405]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23404]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23406]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23405]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23407]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23406]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23408]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23407]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9515]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9515]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9516]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9516]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23409]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23408]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23410]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23409]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23411]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23410]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23411]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23412]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9517]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9517]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9518]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9518]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23413]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23412]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23414]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23413]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23415]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23414]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23415]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23416]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9519]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9519]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9520]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9520]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23417]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23416]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23418]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23417]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23419]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23418]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23420]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23420]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23421]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23419]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9521]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9521]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9522]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9522]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23422]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23422]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23423]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23421]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23423]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23424]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9523]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9523]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9524]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9524]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23425]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23424]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23426]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23425]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23427]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23426]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23427]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23428]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9525]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9525]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9526]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9526]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23429]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23428]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23430]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23430]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23431]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23431]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23432]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23432]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23429]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23433]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23434]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23433]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23435]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23434]]} {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9527]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9527]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9528]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9528]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23436]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23435]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23437]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23436]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23438]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23437]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23439]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23438]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9529]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9529]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9530]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9530]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23440]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23439]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23441]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23440]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23442]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23441]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23443]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23443]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23444]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23442]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9531]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9531]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9532]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9532]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23445]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23444]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23446]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23445]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23447]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23446]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23448]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23447]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9533]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9533]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9534]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9534]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23449]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23448]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23450]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23449]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23451]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23450]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23452]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23451]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9535]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9535]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9536]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9536]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23453]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23452]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23454]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23453]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23455]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23454]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23456]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23455]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9537]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9537]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9538]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9538]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23457]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23456]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23458]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23457]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23459]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23458]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23460]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23460]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23461]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23461]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23462]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23462]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23463]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23459]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9539]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9539]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9540]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9540]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23464]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23464]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23465]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23463]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23465]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23466]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9541]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9541]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9542]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9542]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23467]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23466]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23468]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23467]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23469]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23468]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23469]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23470]]} {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9543]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9543]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9544]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9544]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23471]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23470]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23472]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23471]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23473]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23472]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23473]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23474]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9545]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9545]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9546]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9546]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23475]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23474]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23476]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23475]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23477]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23476]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23477]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23478]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9547]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9547]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9548]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9548]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23479]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23478]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23480]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23479]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23481]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23480]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23481]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23482]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9549]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9549]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9550]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9550]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23483]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23482]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23484]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23483]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23485]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23484]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23486]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23485]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9551]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9551]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9552]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9552]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23487]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23486]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23488]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23488]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23489]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23489]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23490]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23487]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23491]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23490]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23492]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23491]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9553]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9553]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9554]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9554]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23493]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23492]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23494]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23493]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23495]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23494]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23495]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23496]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9555]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9555]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9556]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9556]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23497]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23496]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23498]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23498]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23497]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23499]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23500]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23499]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9557]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9557]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9558]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9558]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23501]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23500]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23502]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23501]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23503]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23502]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23503]]} {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23504]]} {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9559]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9559]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9560]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9560]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23505]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23504]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23506]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23505]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23507]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23506]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23508]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23507]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9561]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9561]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9562]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9562]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23509]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23508]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23510]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23509]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23511]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23510]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23512]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23511]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9563]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9563]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9564]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9564]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23513]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23512]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23514]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23514]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23515]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23513]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23516]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23515]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23517]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23517]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23518]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23518]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23519]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23519]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23516]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23520]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9565]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9565]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9566]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9566]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23521]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23520]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23522]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23521]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23523]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23522]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23524]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23523]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9567]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9567]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9568]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9568]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23525]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23524]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23526]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23525]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23527]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23526]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23527]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23528]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9569]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9569]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9570]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9570]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23529]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23528]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23530]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23529]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23531]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23530]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23531]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23532]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9571]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9571]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9572]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9572]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23533]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23532]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23534]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23533]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23535]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23534]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23536]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23536]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23537]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23535]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23537]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9573]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9573]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9574]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9574]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23538]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23539]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23538]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23540]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23539]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23541]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23540]]} {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9575]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9575]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9576]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9576]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23542]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23541]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23543]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23542]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23544]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23543]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23545]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23545]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23546]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23546]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23547]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23547]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23548]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23544]]} {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9577]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9577]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9578]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9578]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23549]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23548]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23550]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23549]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23551]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23550]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23552]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23551]]} {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9579]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9579]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9580]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9580]]} + {:process 3 :type :invoke :f :txn :value [[:append 5 23553]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23552]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23554]]} + {:process 3 :type :fail :f :txn :value [[:append 5 23553]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23555]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23554]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23556]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23555]]} {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9581]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9581]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9582]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9582]]} + {:process 3 :type :invoke :f :txn :value [[:append 2 23557]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23556]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23558]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23558]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23559]]} + {:process 3 :type :fail :f :txn :value [[:append 2 23557]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23560]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23559]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23561]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23560]]} {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9583]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9583]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9584]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9584]]} + {:process 3 :type :invoke :f :txn :value [[:append 7 23562]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23561]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23563]]} + {:process 3 :type :fail :f :txn :value [[:append 7 23562]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23564]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23563]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23565]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23564]]} {:process 3 :type :invoke :f :txn :value [[:r 5 nil]]} {:process 3 :type :fail :f :txn :value [[:r 5 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9585]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9585]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9586]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9586]]} + {:process 3 :type :invoke :f :txn :value [[:append 4 23566]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23565]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23567]]} + {:process 3 :type :fail :f :txn :value [[:append 4 23566]]} + {:process 3 :type :invoke :f :txn :value [[:append 3 23568]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23567]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23569]]} + {:process 3 :type :fail :f :txn :value [[:append 3 23568]]} {:process 3 :type :invoke :f :txn :value [[:r 2 nil]]} {:process 3 :type :fail :f :txn :value [[:r 2 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9587]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9587]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9588]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9588]]} + {:process 3 :type :invoke :f :txn :value [[:append 1 23570]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23569]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23571]]} + {:process 3 :type :fail :f :txn :value [[:append 1 23570]]} + {:process 3 :type :invoke :f :txn :value [[:append 0 23572]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23571]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23573]]} + {:process 3 :type :fail :f :txn :value [[:append 0 23572]]} {:process 3 :type :invoke :f :txn :value [[:r 7 nil]]} {:process 3 :type :fail :f :txn :value [[:r 7 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9589]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9589]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9590]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9590]]} - {:process 3 :type :invoke :f :txn :value [[:r 4 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 4 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 3 9591]]} - {:process 3 :type :fail :f :txn :value [[:append 3 9591]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9592]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9592]]} - {:process 3 :type :invoke :f :txn :value [[:r 1 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 1 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 0 9593]]} - {:process 3 :type :fail :f :txn :value [[:append 0 9593]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9594]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9594]]} - {:process 3 :type :invoke :f :txn :value [[:r 6 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 6 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 5 9595]]} - {:process 3 :type :fail :f :txn :value [[:append 5 9595]]} - {:process 3 :type :invoke :f :txn :value [[:append 4 9596]]} - {:process 3 :type :fail :f :txn :value [[:append 4 9596]]} - {:process 3 :type :invoke :f :txn :value [[:r 3 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 3 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 2 9597]]} - {:process 3 :type :fail :f :txn :value [[:append 2 9597]]} - {:process 3 :type :invoke :f :txn :value [[:append 1 9598]]} - {:process 3 :type :fail :f :txn :value [[:append 1 9598]]} - {:process 3 :type :invoke :f :txn :value [[:r 0 nil]]} - {:process 3 :type :fail :f :txn :value [[:r 0 nil]]} - {:process 3 :type :invoke :f :txn :value [[:append 7 9599]]} - {:process 3 :type :fail :f :txn :value [[:append 7 9599]]} - {:process 3 :type :invoke :f :txn :value [[:append 6 9600]]} - {:process 3 :type :fail :f :txn :value [[:append 6 9600]]} + {:process 3 :type :invoke :f :txn :value [[:append 6 23574]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23573]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23575]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23575]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23576]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23576]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23577]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23577]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23578]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23578]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 3 :type :fail :f :txn :value [[:append 6 23574]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23579]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23579]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23580]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23580]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23581]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23581]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23582]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23582]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23583]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23583]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23584]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23584]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23585]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23585]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23586]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23586]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23587]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23587]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23588]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23588]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23589]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23589]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23590]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23590]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23591]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23591]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23592]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23592]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23593]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23593]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23594]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23594]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23595]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23595]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23596]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23596]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23597]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23597]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23598]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23598]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23599]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23599]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23600]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23600]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23601]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23601]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23602]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23602]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23603]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23603]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23604]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23604]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23605]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23605]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23606]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23606]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23607]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23607]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23608]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23608]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23609]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23609]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23610]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23610]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23611]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23611]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23612]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23612]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23613]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23613]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23614]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23614]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23615]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23615]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23616]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23616]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23617]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23617]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23618]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23618]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23619]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23619]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23620]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23620]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23621]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23621]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23622]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23622]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23623]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23623]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23624]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23624]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23625]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23625]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23626]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23626]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23627]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23627]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23628]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23628]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23629]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23629]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23630]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23630]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23631]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23631]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23632]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23632]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23633]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23633]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23634]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23634]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23635]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23635]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23636]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23636]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23637]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23637]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23638]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23638]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23639]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23639]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23640]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23640]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23641]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23641]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23642]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23642]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23643]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23643]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23644]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23644]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23645]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23645]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23646]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23646]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23647]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23647]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23648]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23648]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23649]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23649]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23650]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23650]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23651]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23651]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23652]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23652]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23653]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23653]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23654]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23654]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23655]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23655]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23656]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23656]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23657]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23657]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23658]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23658]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23659]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23659]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23660]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23660]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23661]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23661]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23662]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23662]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23663]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23663]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23664]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23664]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23665]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23665]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23666]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23666]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23667]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23667]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23668]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23668]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23669]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23669]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23670]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23670]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23671]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23671]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23672]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23672]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23673]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23673]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23674]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23674]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23675]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23675]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23676]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23676]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23677]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23677]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23678]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23678]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23679]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23679]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23680]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23680]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23681]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23681]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23682]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23682]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23683]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23683]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23684]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23684]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23685]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23685]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23686]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23686]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23687]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23687]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23688]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23688]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23689]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23689]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23690]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23690]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23691]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23691]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23692]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23692]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23693]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23693]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23694]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23694]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23695]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23695]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23696]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23696]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23697]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23697]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23698]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23698]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23699]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23699]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23700]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23700]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23701]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23701]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23702]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23702]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23703]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23703]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23704]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23704]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23705]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23705]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23706]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23706]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23707]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23707]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23708]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23708]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23709]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23709]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23710]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23710]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23711]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23711]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23712]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23712]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23713]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23713]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23714]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23714]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23715]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23715]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23716]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23716]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23717]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23717]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23718]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23718]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23719]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23719]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23720]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23720]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23721]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23721]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23722]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23722]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23723]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23723]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23724]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23724]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23725]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23725]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23726]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23726]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23727]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23727]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23728]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23728]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23729]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23729]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23730]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23730]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23731]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23731]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23732]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23732]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23733]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23733]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23734]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23734]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23735]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23735]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23736]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23736]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23737]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23737]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23738]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23738]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23739]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23739]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23740]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23740]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23741]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23741]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23742]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23742]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23743]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23743]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23744]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23744]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23745]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23745]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23746]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23746]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23747]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23747]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23748]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23748]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23749]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23749]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23750]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23750]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23751]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23751]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23752]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23752]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23753]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23753]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23754]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23754]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23755]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23755]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23756]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23756]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23757]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23757]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23758]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23758]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23759]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23759]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23760]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23760]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23761]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23761]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23762]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23762]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23763]]} + {:process 1 :type :fail :f :txn :value [[:append 0 1660]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23763]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23764]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23764]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23765]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23765]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23766]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23766]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23767]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23767]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23768]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23768]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23769]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23769]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23770]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23770]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23771]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23771]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23772]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23772]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23774]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 23773]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23774]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23775]]} + {:process 1 :type :fail :f :txn :value [[:append 2 23773]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 23776]]} + {:process 1 :type :fail :f :txn :value [[:append 1 23776]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 23777]]} + {:process 1 :type :fail :f :txn :value [[:append 3 23777]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 23778]]} + {:process 1 :type :fail :f :txn :value [[:append 6 23778]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 23779]]} + {:process 1 :type :fail :f :txn :value [[:append 0 23779]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 23780]]} + {:process 1 :type :fail :f :txn :value [[:append 7 23780]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 23781]]} + {:process 1 :type :fail :f :txn :value [[:append 1 23781]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 23782]]} + {:process 1 :type :fail :f :txn :value [[:append 4 23782]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 23783]]} + {:process 1 :type :fail :f :txn :value [[:append 6 23783]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 23784]]} + {:process 1 :type :fail :f :txn :value [[:append 5 23784]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 23785]]} + {:process 1 :type :fail :f :txn :value [[:append 7 23785]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 23786]]} + {:process 1 :type :fail :f :txn :value [[:append 2 23786]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 23787]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23775]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23788]]} + {:process 1 :type :fail :f :txn :value [[:append 4 23787]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 23789]]} + {:process 1 :type :fail :f :txn :value [[:append 3 23789]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 23790]]} + {:process 1 :type :fail :f :txn :value [[:append 5 23790]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 23791]]} + {:process 1 :type :fail :f :txn :value [[:append 0 23791]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 23792]]} + {:process 1 :type :fail :f :txn :value [[:append 2 23792]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 23793]]} + {:process 1 :type :fail :f :txn :value [[:append 1 23793]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 23794]]} + {:process 1 :type :fail :f :txn :value [[:append 3 23794]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 23795]]} + {:process 1 :type :fail :f :txn :value [[:append 6 23795]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 23796]]} + {:process 1 :type :fail :f :txn :value [[:append 0 23796]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 23797]]} + {:process 1 :type :fail :f :txn :value [[:append 7 23797]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 23798]]} + {:process 1 :type :fail :f :txn :value [[:append 1 23798]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 23799]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23788]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23800]]} + {:process 1 :type :fail :f :txn :value [[:append 4 23799]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 23801]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23800]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23802]]} + {:process 1 :type :fail :f :txn :value [[:append 6 23801]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 23803]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23802]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23804]]} + {:process 1 :type :fail :f :txn :value [[:append 5 23803]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 23805]]} + {:process 1 :type :fail :f :txn :value [[:append 7 23805]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 23806]]} + {:process 1 :type :fail :f :txn :value [[:append 2 23806]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 23807]]} + {:process 1 :type :fail :f :txn :value [[:append 4 23807]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 23808]]} + {:process 1 :type :fail :f :txn :value [[:append 3 23808]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 23809]]} + {:process 1 :type :fail :f :txn :value [[:append 5 23809]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 23810]]} + {:process 1 :type :fail :f :txn :value [[:append 0 23810]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 23811]]} + {:process 1 :type :fail :f :txn :value [[:append 2 23811]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 23812]]} + {:process 1 :type :fail :f :txn :value [[:append 1 23812]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 23813]]} + {:process 1 :type :fail :f :txn :value [[:append 3 23813]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 23814]]} + {:process 1 :type :fail :f :txn :value [[:append 6 23814]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 23815]]} + {:process 1 :type :fail :f :txn :value [[:append 0 23815]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 23816]]} + {:process 1 :type :fail :f :txn :value [[:append 7 23816]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 23817]]} + {:process 1 :type :fail :f :txn :value [[:append 1 23817]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 23818]]} + {:process 1 :type :fail :f :txn :value [[:append 4 23818]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 23819]]} + {:process 1 :type :fail :f :txn :value [[:append 6 23819]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 23820]]} + {:process 1 :type :fail :f :txn :value [[:append 5 23820]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 23821]]} + {:process 1 :type :fail :f :txn :value [[:append 7 23821]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 23822]]} + {:process 1 :type :fail :f :txn :value [[:append 2 23822]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 23823]]} + {:process 1 :type :fail :f :txn :value [[:append 4 23823]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 23824]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23804]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 23824]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 23825]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23826]]} + {:process 1 :type :fail :f :txn :value [[:append 5 23825]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 23827]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23826]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23828]]} + {:process 1 :type :fail :f :txn :value [[:append 0 23827]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 23829]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23828]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 23829]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23830]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 23831]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23830]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23832]]} + {:process 1 :type :fail :f :txn :value [[:append 1 23831]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 23833]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23832]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23834]]} + {:process 1 :type :fail :f :txn :value [[:append 3 23833]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 23835]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23834]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23836]]} + {:process 1 :type :fail :f :txn :value [[:append 6 23835]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 23837]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23836]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 23837]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23838]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23838]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 23839]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23840]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23840]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 23839]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23841]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 23842]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23841]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23843]]} + {:process 1 :type :fail :f :txn :value [[:append 1 23842]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 23844]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23843]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23845]]} + {:process 1 :type :fail :f :txn :value [[:append 4 23844]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 23846]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23845]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23847]]} + {:process 1 :type :fail :f :txn :value [[:append 6 23846]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 23848]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23847]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 23848]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23849]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 23850]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23849]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23851]]} + {:process 1 :type :fail :f :txn :value [[:append 7 23850]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 23852]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23851]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 23852]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23853]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 23854]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23853]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23855]]} + {:process 1 :type :fail :f :txn :value [[:append 4 23854]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 23856]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23855]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23857]]} + {:process 1 :type :fail :f :txn :value [[:append 3 23856]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 23858]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23857]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23859]]} + {:process 1 :type :fail :f :txn :value [[:append 5 23858]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 23860]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23859]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 23860]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23861]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 23862]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23861]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23863]]} + {:process 1 :type :fail :f :txn :value [[:append 2 23862]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 23864]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23863]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23865]]} + {:process 1 :type :fail :f :txn :value [[:append 1 23864]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 23866]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23865]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23867]]} + {:process 1 :type :fail :f :txn :value [[:append 3 23866]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 23868]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23867]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23869]]} + {:process 1 :type :fail :f :txn :value [[:append 6 23868]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 23870]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23869]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23871]]} + {:process 1 :type :fail :f :txn :value [[:append 0 23870]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 23872]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23871]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23873]]} + {:process 1 :type :fail :f :txn :value [[:append 7 23872]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 23874]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23873]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23875]]} + {:process 1 :type :fail :f :txn :value [[:append 1 23874]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 23876]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23875]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23877]]} + {:process 1 :type :fail :f :txn :value [[:append 4 23876]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 23878]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23877]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23879]]} + {:process 1 :type :fail :f :txn :value [[:append 6 23878]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 23880]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23879]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 23880]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23881]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 23882]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23881]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23883]]} + {:process 1 :type :fail :f :txn :value [[:append 7 23882]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 23884]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23883]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 23884]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23885]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 23886]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23885]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23887]]} + {:process 1 :type :fail :f :txn :value [[:append 4 23886]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 23888]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23887]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23889]]} + {:process 1 :type :fail :f :txn :value [[:append 3 23888]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 23890]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23889]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23891]]} + {:process 1 :type :fail :f :txn :value [[:append 5 23890]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 23892]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23891]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23893]]} + {:process 1 :type :fail :f :txn :value [[:append 0 23892]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 23894]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23893]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23895]]} + {:process 1 :type :fail :f :txn :value [[:append 2 23894]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 23896]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23895]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23897]]} + {:process 1 :type :fail :f :txn :value [[:append 1 23896]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 23898]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23897]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23899]]} + {:process 1 :type :fail :f :txn :value [[:append 3 23898]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 23900]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23899]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 23900]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23901]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 23902]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23901]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23903]]} + {:process 1 :type :fail :f :txn :value [[:append 0 23902]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 23904]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23903]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 23904]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23905]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 23906]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23905]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23907]]} + {:process 1 :type :fail :f :txn :value [[:append 1 23906]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 23908]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23907]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 23908]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23909]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 23910]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23909]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23911]]} + {:process 1 :type :fail :f :txn :value [[:append 6 23910]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 23912]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23911]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 23912]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23913]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 23914]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23913]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23915]]} + {:process 1 :type :fail :f :txn :value [[:append 7 23914]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 23916]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23915]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23917]]} + {:process 1 :type :fail :f :txn :value [[:append 2 23916]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 23918]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23917]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23919]]} + {:process 1 :type :fail :f :txn :value [[:append 4 23918]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 23920]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23919]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 23920]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23921]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 23922]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23921]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23923]]} + {:process 1 :type :fail :f :txn :value [[:append 5 23922]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 23924]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23923]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 23924]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23925]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 23926]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23925]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23927]]} + {:process 1 :type :fail :f :txn :value [[:append 2 23926]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 23928]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23927]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 23928]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23929]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 23930]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23929]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23931]]} + {:process 1 :type :fail :f :txn :value [[:append 3 23930]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 23932]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23931]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 23932]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23933]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 23934]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23933]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23935]]} + {:process 1 :type :fail :f :txn :value [[:append 0 23934]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 23936]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23935]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 23936]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23937]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 23938]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23937]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23939]]} + {:process 1 :type :fail :f :txn :value [[:append 1 23938]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 23940]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23939]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23941]]} + {:process 1 :type :fail :f :txn :value [[:append 4 23940]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 23942]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23941]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23943]]} + {:process 1 :type :fail :f :txn :value [[:append 6 23942]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 23944]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23943]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23945]]} + {:process 1 :type :fail :f :txn :value [[:append 5 23944]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 23946]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23945]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23947]]} + {:process 1 :type :fail :f :txn :value [[:append 7 23946]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 23948]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23947]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 23948]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23949]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 23950]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23949]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23951]]} + {:process 1 :type :fail :f :txn :value [[:append 4 23950]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 23952]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23951]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23953]]} + {:process 1 :type :fail :f :txn :value [[:append 3 23952]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23953]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23954]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 23955]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23954]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23956]]} + {:process 1 :type :fail :f :txn :value [[:append 5 23955]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 23957]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23956]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23958]]} + {:process 1 :type :fail :f :txn :value [[:append 0 23957]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 23959]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23958]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23960]]} + {:process 1 :type :fail :f :txn :value [[:append 2 23959]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 23961]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23960]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23962]]} + {:process 1 :type :fail :f :txn :value [[:append 1 23961]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 23963]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23962]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23964]]} + {:process 1 :type :fail :f :txn :value [[:append 3 23963]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 23965]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23964]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23966]]} + {:process 1 :type :fail :f :txn :value [[:append 6 23965]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 23967]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23966]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23968]]} + {:process 1 :type :fail :f :txn :value [[:append 0 23967]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 23969]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23968]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23970]]} + {:process 1 :type :fail :f :txn :value [[:append 7 23969]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 23971]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23970]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23972]]} + {:process 1 :type :fail :f :txn :value [[:append 1 23971]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 23973]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23972]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23974]]} + {:process 1 :type :fail :f :txn :value [[:append 4 23973]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 23975]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23974]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 23976]]} + {:process 1 :type :fail :f :txn :value [[:append 6 23975]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 23977]]} + {:process 0 :type :fail :f :txn :value [[:append 4 23976]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23978]]} + {:process 1 :type :fail :f :txn :value [[:append 5 23977]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 23979]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23978]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 23980]]} + {:process 1 :type :fail :f :txn :value [[:append 7 23979]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 23981]]} + {:process 1 :type :fail :f :txn :value [[:append 2 23981]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 23982]]} + {:process 1 :type :fail :f :txn :value [[:append 4 23982]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 23983]]} + {:process 0 :type :fail :f :txn :value [[:append 1 23980]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23984]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23984]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 23985]]} + {:process 1 :type :fail :f :txn :value [[:append 3 23983]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 23986]]} + {:process 1 :type :fail :f :txn :value [[:append 5 23986]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 23987]]} + {:process 1 :type :fail :f :txn :value [[:append 0 23987]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 23988]]} + {:process 0 :type :fail :f :txn :value [[:append 6 23985]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23989]]} + {:process 1 :type :fail :f :txn :value [[:append 2 23988]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 23990]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23989]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 23991]]} + {:process 1 :type :fail :f :txn :value [[:append 1 23990]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 23992]]} + {:process 0 :type :fail :f :txn :value [[:append 3 23991]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 23993]]} + {:process 1 :type :fail :f :txn :value [[:append 3 23992]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 23994]]} + {:process 0 :type :fail :f :txn :value [[:append 2 23993]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 23994]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 23995]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 23996]]} + {:process 0 :type :fail :f :txn :value [[:append 0 23995]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 23997]]} + {:process 1 :type :fail :f :txn :value [[:append 0 23996]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 23998]]} + {:process 0 :type :fail :f :txn :value [[:append 7 23997]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 23998]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 23999]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24000]]} + {:process 0 :type :fail :f :txn :value [[:append 5 23999]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24001]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24000]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24002]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24001]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24002]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24003]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24004]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24003]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24005]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24004]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24006]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24005]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24007]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24006]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24008]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24007]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24009]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24008]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24010]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24009]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24011]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24010]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24012]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24011]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24013]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24012]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24014]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24013]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24014]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24015]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24016]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24015]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24017]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24016]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24018]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24017]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24018]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24019]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24020]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24019]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24021]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24020]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24022]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24021]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24023]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24022]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24024]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24023]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24025]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24024]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24026]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24025]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24026]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24027]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24028]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24027]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24029]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24028]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24030]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24029]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24030]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24031]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24032]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24031]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24033]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24032]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24034]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24033]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24034]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24035]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24036]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24035]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24037]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24036]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24038]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24037]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24038]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24039]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24040]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24039]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24041]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24040]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24042]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24041]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24043]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24042]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24044]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24043]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24045]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24044]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24046]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24045]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24047]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24046]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24048]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24047]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24049]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24048]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24050]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24049]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24051]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24050]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24052]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24051]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24053]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24052]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24054]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24053]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24054]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24055]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24056]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24055]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24057]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24056]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24058]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24057]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24059]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24058]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24060]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24059]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24061]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24060]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24062]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24061]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24062]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24063]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24064]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24063]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24065]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24064]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24066]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24065]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24067]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24066]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24067]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24068]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24069]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24068]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24070]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24069]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24070]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24071]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24072]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24071]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24073]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24072]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24074]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24073]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24074]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24075]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24076]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24075]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24077]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24076]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24078]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24077]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24078]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24079]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24080]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24079]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24081]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24080]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24082]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24081]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24082]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24083]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24084]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24083]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24085]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24084]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24086]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24085]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24086]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24087]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24088]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24087]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24089]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24088]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24090]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24089]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24090]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24091]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24092]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24091]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24093]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24092]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24094]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24093]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24094]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24095]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24096]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24095]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24097]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24096]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24098]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24097]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24099]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24098]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24100]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24099]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24101]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24100]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24102]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24101]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24102]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24103]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24104]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24103]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24105]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24104]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24106]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24105]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24106]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24107]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24108]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24107]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24109]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24108]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24110]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24109]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24111]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24110]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24112]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24111]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24113]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24112]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24114]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24113]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24115]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24114]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24116]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24115]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24117]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24116]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24118]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24117]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24118]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24119]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24120]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24119]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24121]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24120]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24122]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24121]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24123]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24122]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24123]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24124]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24125]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24124]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24125]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24127]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24126]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24127]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24128]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24126]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24129]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24128]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24130]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24129]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24131]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24130]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24132]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24131]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24133]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24132]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24134]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24133]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24134]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24135]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24136]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24135]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24137]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24136]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24138]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24137]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24138]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24139]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24140]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24139]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24141]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24140]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24142]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24141]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24143]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24142]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24144]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24143]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24145]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24144]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24146]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24145]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24146]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24147]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24148]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24147]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24149]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24148]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24150]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24149]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24150]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24151]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24152]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24151]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24153]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24152]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24154]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24153]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24154]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24155]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24156]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24155]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24157]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24156]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24158]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24157]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24158]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24159]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24160]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24159]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24161]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24160]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24162]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24161]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24162]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24163]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24164]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24163]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24165]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24164]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24166]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24165]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24166]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24167]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24168]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24167]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24169]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24168]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24170]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24169]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24171]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24170]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24172]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24171]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24173]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24172]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24174]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24173]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24175]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24174]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24176]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24175]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24177]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24176]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24178]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24177]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24178]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24179]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24179]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24180]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24181]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24180]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24182]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24181]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24182]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24183]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24184]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24183]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24185]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24184]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24186]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24185]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24186]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24187]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24188]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24187]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24189]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24188]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24190]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24189]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24190]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24191]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24192]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24191]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24193]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24192]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24194]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24193]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24195]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24194]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24196]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24195]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24197]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24196]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24198]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24197]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24198]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24199]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24200]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24199]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24201]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24200]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24202]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24201]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24202]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24203]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24204]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24203]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24205]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24204]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24206]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24205]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24207]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24206]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24208]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24207]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24209]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24208]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24210]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24209]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24210]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24211]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24212]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24211]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24213]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24212]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24214]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24213]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24215]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24214]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24216]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24215]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24217]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24216]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24218]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24217]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24219]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24218]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24220]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24219]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24221]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24220]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24222]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24221]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24222]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24223]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24224]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24223]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24225]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24224]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24226]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24225]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24226]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24227]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24228]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24227]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24229]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24228]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24230]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24229]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24230]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24231]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24232]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24231]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24233]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24232]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24234]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24233]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24235]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24234]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24236]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24235]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24237]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24236]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24237]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24238]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24239]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24238]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24240]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24239]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24241]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24240]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24242]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24241]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24243]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24242]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24244]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24243]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24245]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24244]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24246]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24245]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24246]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24247]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24248]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24247]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24249]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24248]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24250]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24249]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24251]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24250]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24252]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24251]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24253]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24252]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24254]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24253]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24254]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24255]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24256]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24255]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24257]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24256]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24258]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24257]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24258]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24259]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24260]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24259]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24261]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24260]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24262]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24261]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24262]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24263]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24264]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24263]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24265]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24264]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24266]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24265]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24267]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24266]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24268]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24267]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24269]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24268]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24270]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24269]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24270]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24271]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24272]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24271]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24273]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24272]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24274]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24273]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24274]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24275]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24276]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24275]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24277]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24276]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24278]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24277]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24278]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24279]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24280]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24279]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24281]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24280]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24282]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24281]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24282]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24283]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24284]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24283]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24285]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24284]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24286]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24285]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24286]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24287]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24288]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24287]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24289]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24288]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24290]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24289]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24290]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24291]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24292]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24291]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24293]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24292]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24294]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24293]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24295]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24294]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24295]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24296]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24297]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24296]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24297]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24298]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24299]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24298]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24300]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24299]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24301]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24300]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24302]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24301]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24303]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24302]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24304]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24303]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24305]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24304]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24306]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24305]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24307]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24306]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24308]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24307]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24309]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24308]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24310]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24309]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24311]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24310]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24312]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24311]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24313]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24312]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24314]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24313]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24315]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24314]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24316]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24315]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24317]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24316]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24317]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24318]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24319]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24318]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24320]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24319]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24321]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24320]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24322]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24321]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24323]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24322]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24324]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24323]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24325]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24324]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24326]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24325]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24327]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24326]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24328]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24327]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24329]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24328]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24330]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24329]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24331]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24330]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24332]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24331]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24333]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24332]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24334]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24333]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24335]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24334]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24336]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24335]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24337]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24336]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24338]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24337]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24339]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24338]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24340]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24339]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24341]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24340]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24342]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24341]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24343]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24342]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24344]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24343]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24345]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24344]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24346]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24345]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24347]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24346]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24348]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24347]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24349]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24348]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24350]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24349]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24350]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24351]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24352]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24351]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24353]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24352]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24354]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24353]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24355]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24354]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24356]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24355]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24357]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24356]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24358]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24357]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24359]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24358]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24360]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24359]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24361]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24360]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24362]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24361]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24363]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24362]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24364]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24363]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24365]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24364]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24366]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24365]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24367]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24366]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24368]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24367]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24369]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24368]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24370]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24369]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24371]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24370]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24372]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24371]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24373]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24372]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24374]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24373]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24375]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24374]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24376]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24375]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24377]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24376]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24378]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24377]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24379]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24378]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24380]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24379]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24381]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24380]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24382]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24381]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24383]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24382]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24384]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24383]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24385]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24384]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24386]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24385]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24387]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24386]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24388]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24387]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24389]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24388]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24390]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24389]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24391]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24390]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24392]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24391]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24393]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24392]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24394]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24393]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24395]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24394]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24396]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24395]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24397]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24396]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24398]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24397]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24399]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24398]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24400]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24399]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24401]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24400]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24402]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24401]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24403]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24402]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24404]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24403]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24405]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24404]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24406]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24405]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24407]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24406]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24408]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24408]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24407]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24409]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24410]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24409]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24411]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24410]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24412]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24411]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24412]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24413]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24414]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24413]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24415]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24414]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24416]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24415]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24417]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24416]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24418]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24417]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24419]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24418]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24420]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24419]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24421]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24420]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24422]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24421]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24423]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24422]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24424]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24423]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24424]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24425]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24426]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24425]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24427]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24426]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24428]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24427]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24428]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24429]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24430]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24429]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24431]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24430]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24432]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24431]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24433]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24432]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24434]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24433]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24435]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24434]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24436]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24435]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24437]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24436]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24438]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24437]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24439]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24438]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24440]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24439]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24440]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24441]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24442]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24441]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24443]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24442]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24444]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24443]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24444]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24445]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24446]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24445]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24447]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24446]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24448]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24447]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24448]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24449]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24450]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24449]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24451]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24450]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24452]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24451]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24453]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24452]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24454]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24453]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24455]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24454]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24456]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24455]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24456]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24457]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24458]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24457]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24459]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24458]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24460]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24459]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24460]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24461]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24462]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24461]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24463]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24462]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24464]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24463]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24465]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24464]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24465]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24466]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24467]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24466]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24467]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24468]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24469]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24468]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24470]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24469]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24471]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24470]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24472]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24471]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24473]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24472]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24474]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24473]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24475]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24474]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24476]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24475]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24476]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24477]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24478]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24477]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24479]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24478]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24480]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24479]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24480]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24481]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24482]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24481]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24483]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24482]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24484]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24483]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24484]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24485]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24486]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24485]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24487]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24486]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24488]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24487]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24488]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24489]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24490]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24489]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24491]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24490]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24492]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24491]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24492]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24493]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24494]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24493]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24495]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24494]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24496]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24495]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24496]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24497]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24498]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24497]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24499]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24498]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24500]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24499]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24500]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24501]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24502]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24501]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24503]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24502]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24504]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24503]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24504]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24505]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24506]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24505]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24507]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24506]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24508]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24507]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24508]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24509]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24510]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24509]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24511]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24510]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24512]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24511]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24512]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24513]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24514]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24513]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24515]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24514]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24516]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24515]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24516]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24517]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24518]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24517]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24519]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24518]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24520]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24519]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24521]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24520]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24521]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24522]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24523]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24522]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24523]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24525]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24524]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24524]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24526]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24525]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24527]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24526]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24528]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24527]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24529]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24528]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24530]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24529]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24531]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24530]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24532]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24531]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24533]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24532]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24534]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24533]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24535]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24534]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24535]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24536]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24537]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24537]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24538]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24536]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24539]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24538]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24540]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24539]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24540]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24541]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24542]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24541]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24543]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24542]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24544]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24543]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24544]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24545]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24546]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24545]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24547]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24546]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24548]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24547]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24549]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24548]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24550]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24549]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24551]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24550]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24552]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24551]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24552]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24553]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24554]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24553]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24555]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24554]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24556]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24555]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24556]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24557]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24558]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24557]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24559]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24558]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24560]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24559]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24561]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24560]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24562]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24561]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24563]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24562]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24564]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24563]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24564]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24565]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24566]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24565]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24567]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24566]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24568]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24567]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24569]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24568]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24570]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24569]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24571]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24570]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24572]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24571]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24572]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24573]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24574]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24573]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24575]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24574]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24576]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24575]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24576]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24577]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24578]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24577]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24579]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24578]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24580]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24579]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24581]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24580]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24582]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24581]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24583]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24582]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24584]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24583]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24584]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24585]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24586]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24585]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24587]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24586]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24588]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24587]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24588]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24589]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24590]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24589]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24591]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24590]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24592]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24591]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24592]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24593]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24594]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24593]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24595]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24594]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24596]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24595]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24596]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24597]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24598]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24597]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24599]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24598]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24600]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24599]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24600]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24601]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24602]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24601]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24603]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24602]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24604]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24603]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24604]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24605]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24606]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24605]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24607]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24606]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24608]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24607]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24609]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24608]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24610]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24609]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24611]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24610]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24612]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24611]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24612]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24613]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24614]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24613]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24615]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24614]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24616]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24615]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24617]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24616]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24618]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24617]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24619]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24618]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24620]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24619]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24620]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24621]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24622]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24621]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24623]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24622]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24624]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24623]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24624]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24625]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24626]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24625]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24627]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24626]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24628]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24627]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24629]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24628]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24630]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24629]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24631]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24630]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24632]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24631]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24632]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24633]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24634]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24633]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24635]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24634]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24635]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24636]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24637]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24636]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24638]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24637]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24639]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24638]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24640]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24639]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24640]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24641]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24642]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24641]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24643]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24642]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24644]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24643]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24644]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24645]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24646]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24645]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24647]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24646]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24648]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24647]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24649]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24648]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24650]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24649]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24651]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24650]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24652]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24651]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24652]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24653]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24654]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24653]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24655]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24654]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24656]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24655]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24656]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24657]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24658]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24657]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24659]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24658]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24660]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24659]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24660]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24661]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24662]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24661]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24663]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24662]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24664]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24663]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24664]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24665]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24666]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24665]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24667]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24666]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24668]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24667]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24668]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24669]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24670]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24669]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24671]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24670]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24672]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24671]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24672]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24673]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24674]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24673]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24675]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24674]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24676]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24675]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24676]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24677]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24678]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24677]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24679]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24678]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24680]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24679]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24680]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24681]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24682]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24681]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24683]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24682]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24684]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24683]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24685]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24684]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24686]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24685]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24687]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24686]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24688]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24687]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24689]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24688]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24690]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24689]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24691]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24690]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24692]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24691]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24693]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24692]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24693]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24694]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24695]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24694]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24695]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24696]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24697]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24696]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24698]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24697]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24699]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24698]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24700]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24699]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24701]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24700]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24702]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24701]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24703]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24702]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24704]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24704]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24705]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24705]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24706]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24703]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24707]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24707]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24708]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24708]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24709]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24706]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24710]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24709]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24711]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24710]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24712]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24711]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24713]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24712]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24714]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24713]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24715]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24714]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24716]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24715]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24716]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24717]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24718]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24717]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24719]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24718]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24720]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24719]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24720]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24721]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24722]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24721]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24723]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24722]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24724]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24723]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24724]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24725]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24726]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24725]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24727]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24726]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24728]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24727]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24728]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24729]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24730]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24729]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24731]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24730]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24732]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24731]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24732]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24733]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24734]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24733]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24735]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24734]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24736]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24735]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24737]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24736]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24738]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24737]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24739]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24738]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24740]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24739]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24740]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24741]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24742]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24741]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24743]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24742]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24744]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24743]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24744]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24745]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24746]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24745]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24747]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24746]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24748]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24747]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24749]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24748]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24749]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24750]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24751]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24750]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24752]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24751]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24753]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24752]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24754]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24754]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24755]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24753]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24756]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24755]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24757]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24756]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24758]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24757]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24758]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24759]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24760]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24759]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24761]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24760]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24762]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24761]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24762]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24763]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24764]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24763]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24765]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24764]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24766]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24765]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24766]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24767]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24768]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24767]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24769]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24768]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24770]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24769]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24770]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24771]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24772]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24771]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24773]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24772]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24774]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24773]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24774]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24775]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24776]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24775]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24777]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24776]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24778]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24777]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24779]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24778]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24780]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24779]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24781]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24780]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24782]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24781]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24783]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24782]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24784]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24783]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24785]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24784]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24786]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24785]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24787]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24787]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24788]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24786]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24789]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24789]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24790]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24788]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24790]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24791]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24792]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24791]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24793]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24792]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24794]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24793]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24794]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24795]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24796]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24795]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24797]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24796]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24798]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24797]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24798]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24799]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24800]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24799]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24801]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24800]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24802]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24801]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24802]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24803]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24804]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24803]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24805]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24804]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24806]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24805]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24807]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24806]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24807]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24808]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24809]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24808]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24809]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24810]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24811]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24810]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24812]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24811]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24813]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24812]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24813]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24814]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24815]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24815]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24816]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24816]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24817]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24814]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24817]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24818]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24819]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24818]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24820]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24819]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24821]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24820]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24822]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24821]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24823]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24822]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24824]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24823]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24824]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24825]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24826]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24825]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24827]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24826]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24828]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24827]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24828]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24829]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24830]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24829]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24831]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24830]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24832]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24831]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24832]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24833]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24834]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24833]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24835]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24834]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24836]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24835]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24836]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24837]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24838]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24837]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24839]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24838]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24840]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24839]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24840]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24841]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24842]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24841]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24843]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24843]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24844]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24842]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24845]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24844]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24846]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24845]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24847]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24846]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24847]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24848]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24849]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24848]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24850]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24849]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24851]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24850]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24852]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24851]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24853]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24852]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24854]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24853]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24855]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24854]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24856]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24855]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24857]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24856]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24858]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24857]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24859]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24858]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24860]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24859]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24861]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24860]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24862]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24861]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24862]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24863]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24864]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24863]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24865]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24864]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24866]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24865]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24867]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24866]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24868]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24867]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24869]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24868]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24870]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24870]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24871]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24869]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24872]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24871]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24873]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24872]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24874]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24873]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24874]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24875]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24876]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24875]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24877]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24876]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24878]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24877]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24878]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24879]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24880]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24879]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24881]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24880]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24882]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24881]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24882]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24884]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24883]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24884]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24885]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24883]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24886]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24885]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24887]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24886]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24888]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24887]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24889]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24888]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24890]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24889]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24891]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24890]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24892]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24891]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24893]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24892]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24894]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24893]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24895]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24894]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24896]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24896]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24897]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24895]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24898]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24897]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24899]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24898]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24900]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24899]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24901]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24900]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24902]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24901]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24902]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24903]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24904]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24903]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24905]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24904]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24906]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24905]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24906]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24907]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24908]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24907]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24909]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24908]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24910]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24909]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24910]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24911]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24912]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24911]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24913]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24912]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24914]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24913]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24914]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24915]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24916]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24915]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24917]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24916]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24918]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24917]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24919]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24918]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24919]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24920]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24921]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24920]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24921]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24922]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24923]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24923]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24924]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24924]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24925]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24922]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24926]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24925]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24927]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24926]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24928]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24927]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24929]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24928]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24930]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24929]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24931]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24930]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24932]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24931]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24932]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24933]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24934]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24933]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24935]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24934]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24936]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24935]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24937]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24936]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24938]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24937]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24939]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24938]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24940]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24939]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24940]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24941]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24942]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24941]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24943]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24942]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24944]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24943]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24944]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24945]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24946]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24945]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24947]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24946]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24948]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24947]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24949]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24949]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24950]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24948]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24951]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24950]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24952]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24951]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24953]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24952]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24954]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24953]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24955]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24954]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24956]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24955]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24957]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24956]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24958]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24957]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24959]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24958]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24960]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24959]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24961]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24960]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24962]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24961]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24963]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24962]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24964]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24963]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24965]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24964]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24966]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24965]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24967]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24966]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24968]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24967]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24969]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24968]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24970]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24969]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24971]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24970]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24972]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24971]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24973]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24972]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24974]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24973]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24975]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24974]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24976]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24975]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24976]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24978]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24977]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24978]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 24979]]} + {:process 0 :type :fail :f :txn :value [[:append 5 24979]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24980]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24977]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 24981]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24980]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 24982]]} + {:process 1 :type :fail :f :txn :value [[:append 7 24981]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24983]]} + {:process 0 :type :fail :f :txn :value [[:append 2 24982]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24984]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24983]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 24985]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24984]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 24986]]} + {:process 1 :type :fail :f :txn :value [[:append 4 24985]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24987]]} + {:process 0 :type :fail :f :txn :value [[:append 7 24986]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24988]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24987]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 24989]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24988]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 24990]]} + {:process 1 :type :fail :f :txn :value [[:append 5 24989]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 24991]]} + {:process 0 :type :fail :f :txn :value [[:append 4 24990]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 24992]]} + {:process 1 :type :fail :f :txn :value [[:append 0 24991]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 24993]]} + {:process 0 :type :fail :f :txn :value [[:append 3 24992]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 24994]]} + {:process 1 :type :fail :f :txn :value [[:append 2 24993]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 24995]]} + {:process 0 :type :fail :f :txn :value [[:append 1 24994]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 24996]]} + {:process 1 :type :fail :f :txn :value [[:append 1 24995]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 24997]]} + {:process 0 :type :fail :f :txn :value [[:append 0 24996]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 24998]]} + {:process 1 :type :fail :f :txn :value [[:append 3 24997]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 24999]]} + {:process 0 :type :fail :f :txn :value [[:append 6 24998]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25000]]} + {:process 1 :type :fail :f :txn :value [[:append 6 24999]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25001]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25000]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25002]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25001]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25003]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25002]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25004]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25004]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25005]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25003]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25006]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25005]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25007]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25006]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25008]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25007]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25008]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25009]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25010]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25009]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25011]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25010]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25012]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25011]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25012]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25013]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25014]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25013]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25015]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25014]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25016]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25015]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25017]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25016]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25018]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25017]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25019]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25018]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25020]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25019]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25021]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25020]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25022]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25021]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25023]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25022]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25024]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25023]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25025]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25024]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25026]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25025]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25027]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25026]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25028]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25027]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25028]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25029]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25030]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25029]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25031]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25031]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25032]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25030]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25033]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25032]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25034]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25034]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25035]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25035]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25036]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25036]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25037]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25037]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25033]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25038]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25039]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25038]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25039]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25040]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25041]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25040]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25042]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25041]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25043]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25042]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25044]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25043]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25045]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25044]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25046]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25045]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25047]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25046]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25048]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25047]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25049]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25048]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25050]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25049]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25051]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25050]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25052]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25052]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25053]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25051]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25054]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25054]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25055]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25055]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25056]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25053]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25056]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25057]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25058]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25057]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25059]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25058]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25060]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25059]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25061]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25061]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25062]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25060]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25063]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25062]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25064]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25063]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25065]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25064]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25066]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25065]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25067]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25066]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25068]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25067]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25069]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25068]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25070]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25069]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25071]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25070]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25072]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25071]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25073]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25072]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25074]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25073]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25075]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25074]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25076]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25075]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25077]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25076]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25078]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25077]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25079]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25078]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25079]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25080]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25081]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25080]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25082]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25081]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25083]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25082]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25084]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25083]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25085]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25084]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25086]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25085]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25087]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25086]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25088]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25088]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25089]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25087]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25090]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25089]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25091]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25090]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25091]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25092]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25093]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25092]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25094]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25093]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25095]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25094]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25096]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25096]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25097]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25095]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25098]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25097]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25099]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25098]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25100]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25100]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25101]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25099]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25102]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25101]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25103]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25102]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25104]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25103]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25105]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25104]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25106]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25105]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25107]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25106]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25108]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25107]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25109]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25108]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25110]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25109]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25111]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25110]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25112]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25111]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25113]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25112]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25114]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25113]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25115]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25114]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25116]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25116]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25117]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25115]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25118]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25117]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25119]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25118]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25120]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25119]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25121]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25120]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25122]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25121]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25123]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25122]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25124]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25123]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25124]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25125]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25126]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25125]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25127]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25126]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25128]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25127]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25129]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25128]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25130]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25129]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25131]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25131]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25132]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25130]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25133]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25132]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25134]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25133]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25135]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25134]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25136]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25135]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25137]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25136]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25138]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25137]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25139]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25138]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25140]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25139]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25141]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25140]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25142]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25142]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25143]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25141]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25144]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25143]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25145]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25144]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25146]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25145]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25146]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25147]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25148]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25147]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25149]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25148]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25150]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25149]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25150]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25151]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25152]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25151]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25153]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25152]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25154]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25153]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25154]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25155]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25156]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25155]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25157]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25156]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25158]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25157]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25159]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25159]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25160]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25158]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25161]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25160]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25162]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25161]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25163]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25162]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25164]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25163]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25165]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25164]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25166]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25165]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25167]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25166]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25168]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25167]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25169]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25168]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25170]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25170]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25171]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25171]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25172]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25169]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25173]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25172]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25174]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25173]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25175]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25174]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25176]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25175]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25177]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25176]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25178]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25177]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25179]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25178]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25180]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25179]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25181]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25180]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25182]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25181]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25183]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25182]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25184]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25184]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25185]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25183]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25186]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25185]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25187]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25186]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25188]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25187]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25189]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25188]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25190]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25189]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25190]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25191]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25192]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25191]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25193]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25192]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25194]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25193]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25194]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25195]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25196]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25195]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25197]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25196]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25198]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25197]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25199]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25199]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25200]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25198]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25201]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25200]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25202]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25201]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25203]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25202]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25204]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25203]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25204]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25205]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25206]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25205]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25207]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25207]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25208]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25206]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25209]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25209]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25210]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25208]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25211]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25210]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25212]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25212]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25211]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25213]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25213]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25214]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25214]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25215]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25215]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25216]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25216]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25217]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25218]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25218]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25219]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25217]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25220]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25219]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25221]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25220]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25222]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25222]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25223]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25223]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25224]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25221]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25225]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25224]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25226]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25225]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25227]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25226]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25228]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25227]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25229]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25228]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25230]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25229]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25231]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25230]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25232]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25231]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25233]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25232]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25234]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25233]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25235]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25234]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25236]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25235]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25237]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25236]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25238]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25238]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25239]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25237]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25239]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25240]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25241]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25240]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25242]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25241]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25243]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25242]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25244]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25243]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25245]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25244]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25246]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25245]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25246]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25247]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25248]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25247]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25249]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25248]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25250]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25249]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25251]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25251]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25252]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25250]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25253]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25252]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25254]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25253]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25255]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25254]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25256]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25255]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25257]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25256]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25258]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25257]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25259]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25258]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25260]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25260]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25261]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25261]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25262]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25259]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25262]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25263]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25264]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25263]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25265]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25264]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25266]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25265]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25267]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25266]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25268]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25267]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25269]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25268]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25270]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25269]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25271]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25270]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25272]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25271]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25273]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25272]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25274]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25273]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25275]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25274]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25276]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25275]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25277]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25276]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25278]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25278]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25279]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25277]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25280]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25279]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25281]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25280]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25282]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25281]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25282]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25283]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25284]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25283]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25285]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25285]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25286]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25284]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25287]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25286]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25288]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25287]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25289]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25288]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25290]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25289]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25291]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25290]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25292]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25291]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25293]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25292]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25294]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25293]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25295]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25294]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25296]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25295]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25297]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25296]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25298]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25297]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25299]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25298]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25300]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25299]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25301]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25300]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25302]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25301]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25303]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25302]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25304]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25303]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25305]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25304]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25306]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25306]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25307]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25307]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25308]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25305]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25309]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25308]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25310]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25309]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25311]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25311]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25312]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25310]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25312]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25313]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25314]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25313]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25315]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25314]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25316]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25315]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25316]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25317]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25317]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25318]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25319]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25318]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25320]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25319]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25320]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25321]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25322]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25321]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25323]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25322]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25324]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25323]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25325]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25324]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25326]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25325]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25327]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25326]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25328]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25327]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25328]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25329]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25330]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25329]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25331]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25331]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25332]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25330]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25333]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25333]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25334]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25334]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25335]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25335]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25336]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25332]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25337]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25337]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25336]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25338]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25339]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25338]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25340]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25339]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25341]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25340]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25342]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25341]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25343]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25342]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25344]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25343]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25345]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25344]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25346]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25345]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25347]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25346]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25348]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25347]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25349]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25348]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25350]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25349]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25351]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25350]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25352]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25351]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25353]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25352]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25354]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25353]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25355]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25354]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25356]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25355]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25357]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25356]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25358]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25358]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25359]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25359]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25360]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25357]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25361]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25360]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25362]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25362]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25363]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25363]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25364]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25361]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25364]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25365]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25366]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25365]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25367]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25366]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25368]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25367]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25369]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25368]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25370]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25369]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25371]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25370]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25372]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25371]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25373]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25372]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25374]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25373]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25374]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25375]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25376]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25375]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25377]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25376]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25378]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25377]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25379]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25378]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25380]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25379]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25381]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25381]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25382]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25380]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25383]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25382]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25384]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25383]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25385]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25384]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25386]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25385]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25387]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25387]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25388]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25386]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25389]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25388]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25390]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25389]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25391]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25390]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25392]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25391]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25393]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25392]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25394]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25393]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25395]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25394]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25396]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25395]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25397]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25396]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25398]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25397]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25399]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25398]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25400]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25399]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25401]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25400]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25402]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25401]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25403]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25402]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25404]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25403]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25405]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25404]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25406]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25405]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25407]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25406]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25408]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25408]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25409]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25407]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25410]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25409]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25411]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25411]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25412]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25412]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25413]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25410]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25414]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25413]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25415]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25415]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25416]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25416]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25414]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25417]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25418]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25417]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25419]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25418]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25420]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25419]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25420]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25421]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25422]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25421]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25423]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25422]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25424]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25423]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25424]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25425]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25426]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25425]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25427]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25427]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25428]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25426]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25429]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25428]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25430]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25429]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25431]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25430]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25432]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25431]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25433]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25432]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25434]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25433]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25435]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25434]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25436]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25435]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25437]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25436]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25438]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25437]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25439]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25438]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25440]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25439]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25441]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25440]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25442]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25441]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25443]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25442]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25444]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25444]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25445]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25445]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25443]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25446]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25447]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25447]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25448]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25446]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25449]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25448]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25450]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25449]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25451]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25451]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25452]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25452]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25453]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25450]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25454]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25454]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25455]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25453]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25456]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25455]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25457]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25456]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25458]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25457]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25458]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25459]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25460]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25459]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25461]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25460]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25462]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25461]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25462]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25463]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25464]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25463]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25465]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25464]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25466]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25465]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25466]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25467]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25468]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25467]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25469]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25468]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25470]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25469]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25471]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25471]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25472]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25470]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25473]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25472]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25474]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25473]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25475]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25474]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25476]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25476]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25475]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25477]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25478]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25477]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25479]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25478]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25480]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25479]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25481]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25480]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25482]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25481]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25483]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25482]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25484]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25483]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25485]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25484]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25486]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25485]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25487]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25486]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25488]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25487]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25488]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25489]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25489]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25490]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25491]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25490]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25492]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25491]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25493]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25492]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25494]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25493]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25494]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25495]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25496]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25495]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25497]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25497]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25498]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25496]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25499]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25498]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25500]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25499]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25501]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25500]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25502]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25502]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25503]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25501]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25504]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25503]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25504]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25505]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25506]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25505]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25507]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25506]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25508]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25507]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25508]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25509]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25510]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25509]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25511]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25510]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25512]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25511]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25512]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25513]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25514]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25513]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25515]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25514]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25516]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25515]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25517]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25516]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25518]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25517]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25519]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25518]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25520]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25519]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25521]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25520]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25522]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25521]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25523]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25522]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25524]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25523]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25525]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25524]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25525]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25526]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25527]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25526]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25528]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25527]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25528]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25529]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25530]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25529]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25531]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25530]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25532]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25531]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25532]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25533]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25534]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25533]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25535]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25534]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25536]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25535]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25537]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25536]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25538]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25537]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25539]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25538]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25540]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25539]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25540]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25541]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25542]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25541]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25543]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25542]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25544]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25543]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25544]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25545]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25546]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25545]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25547]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25546]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25548]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25547]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25549]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25549]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25550]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25550]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25551]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25548]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25552]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25552]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25553]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25551]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25554]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25553]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25555]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25554]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25555]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25557]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25556]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25557]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25558]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25556]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25559]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25558]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25560]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25559]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25560]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25561]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25562]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25561]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25563]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25562]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25564]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25563]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25564]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25565]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25566]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25565]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25567]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25566]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25568]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25567]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25569]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25568]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25570]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25569]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25571]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25570]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25572]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25571]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25572]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25573]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25574]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25573]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25575]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25574]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25576]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25575]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25576]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25578]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25577]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25578]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25579]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25577]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25580]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25580]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25581]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25579]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25582]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25581]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25583]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25582]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25584]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25583]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25585]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25584]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25586]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25585]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25587]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25586]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25588]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25587]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25588]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25589]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25590]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25589]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25591]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25590]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25592]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25591]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25592]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25593]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25594]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25593]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25595]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25594]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25596]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25595]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25597]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25596]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25598]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25597]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25599]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25598]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25600]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25599]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25601]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25601]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25602]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25602]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25603]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25600]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25603]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25604]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25605]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25604]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25606]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25605]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25607]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25606]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25608]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25607]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25609]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25608]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25610]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25609]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25611]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25610]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25612]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25611]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25613]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25612]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25614]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25614]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25615]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25615]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25616]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25616]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25617]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25617]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25618]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25618]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25619]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25619]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25620]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25613]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25621]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25621]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25622]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25620]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25623]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25622]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25624]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25623]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25624]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25625]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25626]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25625]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25627]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25626]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25628]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25627]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25628]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25629]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25630]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25629]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25631]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25630]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25632]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25631]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25633]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25632]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25634]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25633]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25635]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25635]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25636]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25636]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25637]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25634]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25638]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25637]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25638]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25639]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25640]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25639]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25641]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25640]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25642]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25641]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25642]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25643]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25644]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25643]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25645]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25645]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25646]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25644]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25647]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25646]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25648]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25647]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25649]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25648]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25650]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25649]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25651]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25650]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25652]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25651]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25653]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25652]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25654]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25653]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25655]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25654]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25656]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25655]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25657]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25656]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25658]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25657]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25659]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25658]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25660]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25659]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25660]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25661]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25662]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25661]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25663]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25662]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25664]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25663]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25665]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25665]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25666]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25664]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25667]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25667]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25668]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25666]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25669]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25668]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25670]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25669]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25671]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25670]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25672]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25671]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25672]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25673]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25674]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25673]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25675]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25674]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25676]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25675]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25677]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25676]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25678]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25678]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25679]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25677]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25680]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25680]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25681]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25679]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25682]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25682]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25683]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25681]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25684]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25684]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25685]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25683]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25686]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25686]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25687]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25685]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25688]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25688]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25689]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25689]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25690]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25690]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25687]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25691]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25692]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25691]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25693]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25693]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25694]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25692]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25695]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25694]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25696]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25695]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25697]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25696]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25698]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25697]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25699]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25698]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25700]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25699]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25701]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25700]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25702]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25701]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25703]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25702]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25704]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25703]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25705]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25704]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25706]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25705]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25707]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25706]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25708]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25707]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25709]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25708]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25710]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25709]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25711]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25710]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25712]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25711]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25713]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25712]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25713]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25715]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25714]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25714]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25716]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25715]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25716]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25717]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25718]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25718]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25719]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25719]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25720]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25717]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25721]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25720]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25722]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25721]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25723]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25722]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25724]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25723]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25725]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25724]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25726]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25725]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25727]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25726]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25728]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25727]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25729]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25728]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25730]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25729]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25731]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25730]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25732]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25731]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25733]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25732]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25734]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25733]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25735]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25734]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25736]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25735]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25737]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25736]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25738]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25737]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25739]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25738]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25739]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25740]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25741]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25740]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25742]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25742]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25743]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25741]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25744]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25744]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25745]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25745]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25746]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25743]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25747]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25746]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25748]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25747]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25749]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25748]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25750]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25749]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25751]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25750]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25752]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25751]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25753]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25752]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25754]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25753]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25755]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25754]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25756]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25755]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25757]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25756]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25758]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25757]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25759]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25758]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25760]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25759]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25761]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25760]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25762]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25761]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25763]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25762]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25764]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25763]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25765]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25764]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25766]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25765]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25767]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25766]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25768]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25768]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25769]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25767]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25770]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25769]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25770]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25771]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25772]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25771]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25773]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25772]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25774]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25773]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25774]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25775]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25776]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25775]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25777]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25776]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25778]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25777]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25779]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25778]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25780]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25779]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25781]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25780]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25782]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25781]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25782]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25783]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25784]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25783]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25785]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25784]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25786]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25785]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25786]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25787]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25788]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25787]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25789]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25788]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25790]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25789]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25790]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25791]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25792]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25791]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25793]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25793]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25794]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25792]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25795]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25794]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25796]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25795]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25797]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25796]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25798]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25797]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25799]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25798]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25800]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25800]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25801]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25799]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25802]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25801]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25803]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25802]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25804]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25803]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25805]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25804]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25806]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25805]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25807]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25806]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25808]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25807]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25809]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25808]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25810]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25809]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25811]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25810]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25812]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25811]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25813]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25812]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25814]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25813]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25815]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25814]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25816]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25816]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25817]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25815]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25818]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25817]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25819]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25818]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25820]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25819]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25821]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25820]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25822]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25821]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25823]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25822]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25824]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25824]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25825]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25823]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25826]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25825]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25827]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25826]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25828]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25827]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25829]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25828]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25829]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25830]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25831]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25830]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25832]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25831]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25832]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25833]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25834]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25833]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25835]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25834]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25836]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25835]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25836]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25837]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25838]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25837]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25839]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25838]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25840]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25839]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25841]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25840]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25842]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25842]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25843]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25841]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25844]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25844]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25845]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25845]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25846]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25843]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25847]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25846]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25848]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25847]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25849]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25848]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25850]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25849]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25851]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25850]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25852]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25852]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25853]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25853]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25851]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25854]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25855]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25855]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25856]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25854]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25857]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25856]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25858]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25857]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25859]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25858]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25860]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25859]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25861]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25860]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25862]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25861]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25863]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25862]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25864]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25864]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25865]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25863]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25866]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25865]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25867]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25866]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25868]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25867]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25868]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25869]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25870]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25869]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25871]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25870]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25872]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25871]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25872]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25873]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25874]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25873]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25875]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25874]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25876]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25875]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25876]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25877]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25878]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25877]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25879]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25878]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25880]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25879]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25881]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25881]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25882]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25880]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25883]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25882]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25884]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25883]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25885]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25884]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25886]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25885]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25887]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25886]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25888]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25887]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25889]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25889]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25890]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25890]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25891]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25888]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25892]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25891]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25893]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25892]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25894]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25893]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25895]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25894]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25896]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25895]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25897]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25896]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25898]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25897]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25899]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25898]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25900]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25899]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25901]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25900]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25902]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25901]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25903]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25902]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25904]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25903]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25905]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25904]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25906]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25906]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25907]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25905]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25908]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25907]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25909]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25908]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25910]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25909]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25911]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25910]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25912]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25911]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25912]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25913]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25914]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25913]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25915]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25915]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25914]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25916]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25917]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25916]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25918]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25917]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25919]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25918]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25920]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25919]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25921]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25920]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25922]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25921]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25923]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25922]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25924]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25923]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25925]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25924]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25926]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25925]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25927]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25926]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25928]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25927]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25929]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25928]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25930]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25929]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25931]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25930]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25932]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25931]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25933]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25932]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25934]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25934]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25935]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25933]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25936]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25935]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25937]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25936]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25938]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25938]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25939]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25937]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25940]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25939]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25941]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25940]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25942]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25941]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25943]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25942]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25944]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25943]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25945]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25944]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25946]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25945]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25947]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25946]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25948]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25947]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25949]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25948]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25950]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25949]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25951]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25950]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25952]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25951]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25953]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25952]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25954]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25953]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25955]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25954]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25956]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25955]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25957]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25956]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25958]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25958]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25959]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25957]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25960]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25959]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25961]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25960]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25962]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25961]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25963]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25962]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25964]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25963]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25965]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25965]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25966]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25964]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25967]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25966]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25968]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25967]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25969]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25968]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25970]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25969]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25971]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25970]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25972]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25971]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25973]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25972]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25974]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25973]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25975]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25974]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25976]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25975]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25977]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25976]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25977]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25978]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 25979]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25978]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 25980]]} + {:process 0 :type :fail :f :txn :value [[:append 2 25979]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25981]]} + {:process 1 :type :fail :f :txn :value [[:append 2 25980]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25982]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25981]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 25983]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25982]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 25984]]} + {:process 0 :type :fail :f :txn :value [[:append 7 25983]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25985]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25985]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 25986]]} + {:process 1 :type :fail :f :txn :value [[:append 3 25984]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25987]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25987]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 25988]]} + {:process 0 :type :fail :f :txn :value [[:append 4 25986]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25989]]} + {:process 1 :type :fail :f :txn :value [[:append 0 25988]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 25990]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25989]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 25990]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 25991]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 25992]]} + {:process 0 :type :fail :f :txn :value [[:append 1 25991]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 25993]]} + {:process 1 :type :fail :f :txn :value [[:append 1 25992]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 25994]]} + {:process 0 :type :fail :f :txn :value [[:append 0 25993]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 25994]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 25995]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 25996]]} + {:process 0 :type :fail :f :txn :value [[:append 6 25995]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 25997]]} + {:process 1 :type :fail :f :txn :value [[:append 6 25996]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 25998]]} + {:process 0 :type :fail :f :txn :value [[:append 5 25997]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 25998]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 25999]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26000]]} + {:process 0 :type :fail :f :txn :value [[:append 3 25999]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26001]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26000]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26001]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26002]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26003]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26002]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26004]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26003]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26005]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26004]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26006]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26005]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26006]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26007]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26008]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26007]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26009]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26008]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26010]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26009]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26011]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26011]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26012]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26012]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26013]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26010]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26013]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26014]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26015]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26014]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26016]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26015]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26017]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26016]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26018]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26017]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26019]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26018]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26020]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26019]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26020]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26021]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26022]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26021]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26023]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26022]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26024]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26023]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26025]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26024]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26026]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26025]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26027]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26026]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26028]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26027]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26028]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26029]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26030]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26029]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26031]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26030]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26032]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26031]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26033]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26032]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26034]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26033]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26035]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26034]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26036]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26035]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26037]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26036]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26038]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26037]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26039]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26038]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26040]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26039]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26040]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26041]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26042]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26041]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26043]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26042]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26044]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26043]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26044]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26045]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26046]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26045]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26047]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26046]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26048]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26047]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26048]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26049]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26050]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26049]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26051]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26050]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26052]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26051]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26052]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26053]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26054]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26053]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26055]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26054]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26056]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26055]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26056]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26057]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26057]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26058]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26059]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26058]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26059]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26060]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26061]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26060]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26062]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26062]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26063]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26061]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26064]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26064]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26065]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26063]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26066]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26065]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26067]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26066]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26068]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26067]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26069]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26068]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26070]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26069]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26071]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26070]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26072]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26071]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26072]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26073]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26074]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26073]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26075]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26074]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26076]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26075]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26076]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26077]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26078]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26077]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26079]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26078]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26080]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26079]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26080]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26081]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26082]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26081]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26083]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26082]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26084]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26083]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26084]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26085]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26086]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26085]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26087]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26086]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26088]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26087]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26089]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26088]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26090]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26090]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26091]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26089]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26092]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26092]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26093]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26091]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26094]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26093]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26095]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26094]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26096]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26095]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26097]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26096]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26098]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26097]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26099]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26098]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26100]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26099]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26101]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26100]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26102]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26101]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26103]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26102]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26104]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26103]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26105]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26104]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26106]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26105]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26107]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26106]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26108]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26107]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26109]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26108]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26110]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26109]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26111]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26110]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26112]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26111]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26112]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26113]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26114]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26113]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26115]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26115]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26116]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26114]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26117]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26117]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26118]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26116]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26119]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26119]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26120]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26118]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26121]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26121]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26122]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26120]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26123]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26123]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26124]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26122]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26125]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26125]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26126]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26124]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26127]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26126]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26128]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26127]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26128]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26129]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26130]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26129]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26131]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26130]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26132]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26131]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26132]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26133]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26134]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26133]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26135]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26134]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26136]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26135]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26136]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26137]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26138]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26137]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26139]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26138]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26140]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26139]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26141]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26141]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26142]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26140]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26143]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26142]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26143]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26144]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26145]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26144]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26146]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26145]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26147]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26146]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26148]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26147]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26149]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26148]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26150]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26149]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26150]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26152]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26151]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26152]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26153]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26151]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26153]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26154]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26155]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26154]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26156]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26155]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26157]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26156]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26158]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26157]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26159]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26158]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26160]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26159]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26161]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26160]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26161]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26163]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26163]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26164]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26164]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26162]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26165]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26162]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26166]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26165]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26167]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26167]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26168]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26166]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26169]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26169]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26170]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26170]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26171]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26168]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26172]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26171]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26172]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26173]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26174]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26173]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26175]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26174]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26176]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26175]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26177]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26176]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26178]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26177]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26179]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26178]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26180]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26179]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26181]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26180]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26182]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26181]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26183]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26182]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26184]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26183]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26185]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26184]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26186]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26185]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26187]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26186]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26188]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26187]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26189]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26188]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26190]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26189]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26191]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26190]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26192]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26192]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26193]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26191]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26194]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26193]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26195]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26195]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26196]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26194]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26197]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26197]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26198]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26196]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26199]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26198]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26200]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26199]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26200]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26201]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26202]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26201]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26203]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26202]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26204]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26203]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26204]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26205]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26206]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26205]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26207]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26206]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26208]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26207]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26208]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26209]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26210]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26209]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26211]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26210]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26212]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26211]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26213]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26212]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26214]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26213]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26215]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26214]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26216]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26215]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26217]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26217]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26218]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26218]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26219]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26216]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26220]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26219]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26221]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26220]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26222]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26222]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26223]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26221]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26223]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26224]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26225]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26224]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26226]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26225]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26227]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26226]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26228]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26228]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26229]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26229]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26230]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26227]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26230]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26231]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26232]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26231]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26233]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26232]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26234]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26233]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26234]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26235]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26236]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26235]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26237]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26236]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26238]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26237]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26238]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26239]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26240]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26239]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26241]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26241]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26242]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26242]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26243]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26243]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26244]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26240]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26245]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26244]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26246]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26246]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26247]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26245]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26248]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26247]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26249]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26248]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26250]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26249]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26250]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26251]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26252]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26251]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26253]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26252]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26254]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26253]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26254]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26255]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26256]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26255]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26257]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26256]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26258]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26257]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26259]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26258]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26260]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26259]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26261]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26260]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26262]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26261]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26263]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26262]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26264]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26263]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26265]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26264]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26266]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26266]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26267]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26265]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26268]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26267]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26269]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26268]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26270]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26270]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26271]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26269]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26271]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26272]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26273]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26273]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26272]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26274]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26275]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26274]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26276]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26275]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26277]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26276]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26278]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26277]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26278]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26279]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26280]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26279]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26281]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26280]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26282]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26281]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26283]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26282]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26284]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26283]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26285]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26284]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26285]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26286]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26287]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26286]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26288]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26287]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26289]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26288]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26290]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26289]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26290]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26291]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26292]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26291]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26293]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26293]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26294]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26292]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26295]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26294]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26296]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26295]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26297]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26296]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26298]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26298]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26299]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26299]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26300]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26300]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26301]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26297]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26302]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26301]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26303]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26302]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26304]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26303]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26305]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26304]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26306]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26305]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26306]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26307]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26308]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26307]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26309]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26308]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26310]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26309]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26310]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26311]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26312]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26311]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26313]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26312]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26314]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26313]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26314]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26315]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26316]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26315]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26317]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26317]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26318]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26316]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26319]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26318]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26320]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26319]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26321]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26320]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26322]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26321]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26323]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26322]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26324]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26323]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26325]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26324]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26326]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26325]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26327]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26326]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26328]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26328]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26329]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26329]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26330]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26330]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26331]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26327]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26332]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26331]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26333]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26332]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26334]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26333]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26334]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26335]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26336]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26335]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26337]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26336]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26338]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26337]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26339]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26339]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26340]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26338]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26341]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26340]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26342]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26341]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26342]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26343]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26344]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26343]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26344]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26345]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26346]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26345]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26347]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26346]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26348]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26347]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26348]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26349]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26350]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26349]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26351]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26350]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26352]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26351]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26352]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26353]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26354]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26353]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26355]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26354]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26356]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26355]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26357]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26357]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26358]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26358]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26359]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26359]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26360]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26360]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26361]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26356]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26362]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26361]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26363]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26362]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26364]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26363]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26364]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26365]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26366]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26365]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26367]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26366]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26368]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26367]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26368]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26369]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26370]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26369]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26371]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26370]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26372]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26371]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26372]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26373]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26374]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26373]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26375]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26374]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26376]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26375]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26376]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26377]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26378]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26377]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26379]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26378]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26380]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26379]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26380]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26381]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26382]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26381]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26383]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26383]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26382]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26384]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26385]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26384]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26386]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26385]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26387]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26386]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26388]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26388]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26389]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26389]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26390]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26390]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26391]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26387]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26392]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26391]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26393]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26392]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26394]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26393]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26395]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26394]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26396]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26395]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26397]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26396]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26398]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26397]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26399]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26399]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26400]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26398]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26400]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26401]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26402]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26401]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26403]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26402]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26404]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26403]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26405]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26404]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26406]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26405]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26407]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26406]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26407]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26408]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26409]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26408]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26410]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26409]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26411]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26410]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26412]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26411]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26413]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26413]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26414]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26412]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26415]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26414]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26416]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26415]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26417]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26416]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26418]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26418]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26419]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26419]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26420]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26420]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26421]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26417]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26422]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26421]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26423]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26422]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26424]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26423]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26425]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26424]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26426]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26425]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26427]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26426]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26428]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26428]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26429]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26427]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26430]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26429]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26431]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26431]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26432]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26430]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26433]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26432]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26434]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26433]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26435]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26434]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26436]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26436]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26437]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26437]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26438]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26435]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26439]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26438]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26440]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26439]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26440]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26441]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26442]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26441]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26443]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26443]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26444]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26444]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26445]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26445]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26442]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26447]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26446]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26446]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26448]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26447]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26449]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26448]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26450]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26449]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26451]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26450]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26452]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26451]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26453]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26452]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26454]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26453]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26455]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26455]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26456]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26454]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26457]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26456]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26458]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26457]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26458]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26459]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26460]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26459]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26461]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26460]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26462]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26461]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26462]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26463]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26464]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26463]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26465]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26464]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26466]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26465]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26466]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26467]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26468]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26467]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26469]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26468]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26470]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26469]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26471]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26471]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26472]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26472]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26473]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26473]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26474]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26474]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26475]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26470]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26476]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26475]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26477]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26477]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26478]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26476]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26479]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26478]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26480]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26479]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26481]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26480]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26482]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26481]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26483]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26482]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26484]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26483]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26485]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26484]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26486]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26485]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26487]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26486]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26488]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26487]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26489]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26488]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26490]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26489]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26491]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26490]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26492]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26492]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26493]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26493]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26494]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26494]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26495]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26491]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26496]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26495]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26497]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26496]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26498]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26497]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26498]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26499]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26500]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26500]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26501]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26499]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26502]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26502]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26503]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26501]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26504]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26503]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26505]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26504]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26506]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26505]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26507]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26506]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26508]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26507]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26509]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26508]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26510]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26509]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26510]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26511]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26512]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26511]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26513]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26513]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26512]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26514]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26515]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26515]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26516]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26514]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26517]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26516]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26518]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26517]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26519]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26518]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26520]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26519]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26521]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26520]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26522]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26521]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26523]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26522]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26524]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26523]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26525]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26525]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26526]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26524]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26527]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26527]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26528]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26526]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26529]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26528]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26530]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26530]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26531]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26531]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26532]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26532]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26533]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26533]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26534]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26529]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26535]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26535]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26536]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26534]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26537]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26536]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26538]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26537]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26538]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26539]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26540]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26539]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26541]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26540]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26542]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26541]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26542]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26543]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26544]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26543]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26545]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26544]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26546]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26545]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26547]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26546]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26548]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26547]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26549]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26549]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26550]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26548]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26551]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26551]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26552]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26550]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26553]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26552]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26554]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26554]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26555]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26553]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26556]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26555]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26557]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26556]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26558]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26558]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26559]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26559]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26560]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26560]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26561]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26561]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26562]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26562]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26563]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26557]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26564]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26564]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26565]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26563]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26566]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26566]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26567]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26567]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26568]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26568]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26569]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26565]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26570]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26569]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26571]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26570]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26572]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26571]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26573]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26572]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26574]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26573]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26575]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26574]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26576]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26575]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26577]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26576]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26578]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26577]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26579]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26578]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26580]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26579]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26581]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26580]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26582]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26581]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26583]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26583]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26584]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26582]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26585]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26584]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26586]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26585]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26587]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26586]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26588]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26587]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26589]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26588]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26590]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26589]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26591]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26590]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26592]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26592]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26593]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26593]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26594]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26591]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26595]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26594]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26596]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26595]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26597]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26596]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26598]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26597]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26599]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26598]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26600]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26599]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26601]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26600]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26602]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26601]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26603]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26602]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26604]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26603]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26605]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26604]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26606]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26605]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26607]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26606]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26608]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26607]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26609]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26608]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26610]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26609]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26611]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26610]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26612]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26611]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26613]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26612]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26614]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26613]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26615]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26614]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26616]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26616]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26617]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26615]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26618]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26617]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26619]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26618]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26620]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26619]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26621]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26621]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26622]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26622]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26623]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26623]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26624]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26620]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26625]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26624]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26626]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26626]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26627]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26625]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26628]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26627]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26628]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26629]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26630]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26629]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26631]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26630]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26632]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26631]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26633]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26632]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26634]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26633]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26635]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26635]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26636]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26634]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26637]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26636]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26638]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26637]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26639]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26638]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26640]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26639]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26641]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26640]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26642]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26641]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26643]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26642]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26644]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26643]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26645]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26644]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26646]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26645]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26647]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26646]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26648]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26647]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26649]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26648]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26650]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26650]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26651]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26651]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26652]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26652]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26653]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26649]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26654]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26653]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26655]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26654]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26656]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26656]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26657]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26655]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26657]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26658]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26659]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26658]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26660]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26660]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26661]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26659]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26661]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26662]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26663]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26663]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26664]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26662]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26664]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26665]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26666]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26666]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26667]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26665]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26668]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26667]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26669]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26668]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26669]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26670]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26671]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26670]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26672]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26671]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26673]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26672]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26674]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26674]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26675]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26675]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26676]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26676]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26677]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26673]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26678]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26677]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26678]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26679]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26680]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26679]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26681]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26680]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26682]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26682]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26683]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26681]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26684]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26683]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26684]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26685]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26686]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26686]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26685]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26687]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26688]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26687]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26689]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26688]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26690]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26689]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26690]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26691]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26692]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26691]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26693]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26692]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26694]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26693]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26694]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26695]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26696]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26695]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26697]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26696]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26698]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26697]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26698]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26699]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26700]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26699]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26701]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26700]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26702]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26701]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26703]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26703]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26704]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26704]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26705]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26705]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26706]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26706]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26707]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26702]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26708]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26707]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26709]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26708]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26710]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26709]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26710]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26711]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26712]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26711]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26713]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26712]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26714]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26713]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26714]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26715]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26716]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26715]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26717]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26716]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26718]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26717]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26719]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26718]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26720]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26719]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26721]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26720]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26722]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26721]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26722]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26723]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26724]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26723]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26725]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26724]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26726]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26725]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26726]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26727]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26728]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26727]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26729]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26728]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26730]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26729]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26731]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26730]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26732]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26731]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26733]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26733]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26734]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26732]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26735]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26734]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26736]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26735]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26737]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26736]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26738]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26737]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26739]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26738]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26740]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26739]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26741]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26740]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26742]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26741]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26743]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26742]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26744]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26743]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26745]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26744]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26746]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26745]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26747]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26746]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26748]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26747]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26749]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26748]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26750]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26749]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26751]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26750]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26752]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26751]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26753]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26752]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26754]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26753]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26755]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26754]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26756]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26755]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26757]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26756]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26758]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26758]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26759]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26757]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26760]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26759]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26761]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26761]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26762]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26760]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26762]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26763]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26764]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26763]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26765]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26764]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26766]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26765]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26767]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26766]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26768]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26767]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26769]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26768]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26770]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26769]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26771]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26770]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26772]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26771]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26773]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26772]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26774]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26773]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26775]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26774]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26776]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26775]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26777]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26776]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26778]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26777]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26779]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26778]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26780]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26779]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26781]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26780]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26782]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26782]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26783]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26781]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26784]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26783]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26785]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26784]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26786]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26785]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26787]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26787]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26788]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26788]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26789]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26789]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26790]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26786]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26791]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26790]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26792]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26791]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26793]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26792]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26794]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26793]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26795]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26794]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26796]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26795]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26797]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26797]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26796]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26798]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26799]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26799]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26800]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26798]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26800]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26801]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26802]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26801]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26803]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26803]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26804]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26802]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26805]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26804]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26806]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26805]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26807]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26806]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26808]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26807]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26809]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26808]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26810]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26809]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26811]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26810]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26812]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26811]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26813]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26812]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26814]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26813]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26815]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26814]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26816]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26816]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26817]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26817]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26818]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26818]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26819]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26815]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26820]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26819]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26821]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26820]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26822]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26821]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26823]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26822]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26824]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26823]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26825]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26824]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26826]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26826]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26827]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26825]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26828]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26827]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26829]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26828]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26830]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26829]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26831]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26830]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26832]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26831]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26833]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26832]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26834]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26833]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26835]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26834]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26836]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26835]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26837]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26836]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26838]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26837]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26839]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26838]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26840]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26839]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26841]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26840]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26842]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26841]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26843]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26842]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26844]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26844]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26845]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26845]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26846]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26843]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26847]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26846]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26848]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26847]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26849]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26849]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26850]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26848]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26851]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26850]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26852]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26851]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26852]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26853]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26854]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26854]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26855]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26853]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26856]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26855]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26857]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26856]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26858]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26857]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26859]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26858]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26860]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26859]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26861]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26860]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26862]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26861]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26863]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26862]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26864]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26863]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26865]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26864]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26866]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26865]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26867]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26866]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26868]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26867]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26869]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26868]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26870]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26870]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26871]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26871]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26872]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26869]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26873]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26872]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26874]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26873]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26875]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26875]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26876]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26874]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26877]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26876]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26878]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26877]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26879]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26878]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26880]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26879]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26880]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26881]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26882]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26881]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26883]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26882]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26884]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26883]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26884]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26885]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26886]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26885]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26887]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26886]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26888]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26887]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26888]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26889]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26890]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26889]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26891]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26890]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26892]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26891]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26892]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26893]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26894]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26893]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26895]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26894]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26896]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26895]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26897]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26897]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26898]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26898]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26899]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26899]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26900]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26896]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26900]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26901]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26902]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26901]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26903]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26902]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26904]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26903]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26905]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26904]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26906]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26905]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26907]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26906]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26908]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26907]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26909]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26908]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26910]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26909]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26911]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26910]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26911]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26912]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26913]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26912]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26914]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26913]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26915]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26914]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26916]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26915]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26917]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26916]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26918]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26917]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26919]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26918]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26920]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26919]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26921]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26920]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26922]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26921]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26923]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26922]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26924]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26924]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26925]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26925]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26926]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26923]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26926]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26927]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26928]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26927]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26929]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26928]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26930]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26929]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26931]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26930]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26932]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26931]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26933]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26932]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26934]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26933]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26935]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26934]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26936]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26935]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26937]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26936]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26938]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26937]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26939]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26938]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26940]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26939]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26941]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26940]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26942]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26941]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26943]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26942]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26944]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26943]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26945]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26944]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26946]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26945]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26947]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26946]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26948]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26947]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26949]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26948]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26950]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26950]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26951]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26949]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26952]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26951]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26953]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26953]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26954]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26954]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26955]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26955]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26956]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26952]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26957]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26956]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26958]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26957]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26959]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26958]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26960]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26959]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26961]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26960]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26962]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26961]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26963]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26962]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26964]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26963]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26965]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26964]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26966]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26965]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26967]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26966]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26968]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26967]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26969]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26968]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26970]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26969]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26971]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26971]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26972]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26970]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26972]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26973]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26974]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26973]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26975]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26974]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26976]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26975]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26976]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26977]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 26978]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26977]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26979]]} + {:process 1 :type :fail :f :txn :value [[:append 5 26978]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26980]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26979]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 26981]]} + {:process 0 :type :fail :f :txn :value [[:append 3 26981]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26982]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26982]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 26983]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26980]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 26984]]} + {:process 0 :type :fail :f :txn :value [[:append 0 26983]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26985]]} + {:process 1 :type :fail :f :txn :value [[:append 2 26984]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26986]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26985]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26986]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 26987]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 26988]]} + {:process 0 :type :fail :f :txn :value [[:append 5 26987]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 26989]]} + {:process 1 :type :fail :f :txn :value [[:append 3 26988]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26990]]} + {:process 0 :type :fail :f :txn :value [[:append 4 26989]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26990]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 26991]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 26992]]} + {:process 0 :type :fail :f :txn :value [[:append 2 26991]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 26993]]} + {:process 1 :type :fail :f :txn :value [[:append 0 26992]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 26994]]} + {:process 0 :type :fail :f :txn :value [[:append 1 26993]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 26994]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 26995]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 26996]]} + {:process 0 :type :fail :f :txn :value [[:append 7 26995]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 26997]]} + {:process 1 :type :fail :f :txn :value [[:append 1 26996]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 26998]]} + {:process 1 :type :fail :f :txn :value [[:append 4 26998]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 26999]]} + {:process 0 :type :fail :f :txn :value [[:append 6 26997]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 26999]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27000]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27001]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27000]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27002]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27001]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27003]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27002]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27004]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27003]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27005]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27004]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27006]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27005]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27007]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27007]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27008]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27008]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27009]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27009]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27010]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27006]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27011]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27010]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27012]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27011]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27013]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27012]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27014]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27013]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27015]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27014]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27016]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27015]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27017]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27016]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27018]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27017]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27019]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27018]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27020]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27019]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27021]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27020]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27022]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27021]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27023]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27023]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27024]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27024]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27025]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27025]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27026]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27026]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27027]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27022]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27028]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27027]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27029]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27028]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27030]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27029]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27031]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27030]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27032]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27032]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27033]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27033]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27034]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27034]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27035]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27031]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27036]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27035]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27037]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27036]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27038]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27037]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27038]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27039]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27040]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27039]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27041]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27040]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27042]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27041]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27042]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27043]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27044]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27044]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27045]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27043]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27046]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27045]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27047]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27046]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27048]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27047]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27049]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27048]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27050]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27049]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27051]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27050]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27051]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27052]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27053]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27052]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27054]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27053]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27055]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27054]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27056]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27055]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27057]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27057]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27058]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27058]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27059]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27059]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27060]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27056]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27061]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27060]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27062]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27061]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27063]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27062]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27064]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27063]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27065]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27064]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27066]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27065]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27067]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27066]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27068]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27067]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27069]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27068]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27070]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27069]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27071]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27070]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27072]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27072]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27073]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27071]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27074]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27074]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27075]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27075]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27076]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27073]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27077]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27076]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27078]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27077]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27078]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27079]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27080]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27079]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27081]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27080]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27082]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27081]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27082]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27083]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27084]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27084]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27085]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27085]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27086]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27086]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27087]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27083]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27088]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27087]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27089]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27088]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27090]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27089]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27091]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27090]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27092]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27091]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27093]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27092]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27094]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27093]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27095]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27094]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27096]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27096]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27097]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27097]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27098]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27095]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27099]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27099]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27100]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27098]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27101]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27100]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27102]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27101]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27103]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27102]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27104]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27103]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27105]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27104]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27106]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27105]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27107]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27106]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27108]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27107]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27109]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27108]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27110]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27109]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27111]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27110]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27112]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27112]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27113]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27113]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27114]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27114]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27115]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27111]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27116]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27115]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27117]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27116]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27118]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27117]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27119]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27118]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27120]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27119]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27121]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27121]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27122]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27120]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27123]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27122]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27124]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27123]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27125]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27124]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27126]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27125]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27127]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27126]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27128]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27127]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27129]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27128]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27130]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27129]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27131]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27130]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27132]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27131]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27133]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27132]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27134]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27133]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27135]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27134]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27136]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27135]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27137]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27136]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27138]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27138]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27137]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27139]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27140]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27139]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27140]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27141]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27142]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27141]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27143]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27142]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27144]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27143]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27144]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27145]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27146]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27145]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27147]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27146]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27148]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27147]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27148]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27149]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27150]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27149]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27151]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27150]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27152]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27151]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27152]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27153]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27154]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27153]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27155]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27154]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27156]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27155]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27156]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27157]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27158]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27157]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27159]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27158]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27160]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27159]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27161]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27160]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27162]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27161]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27163]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27162]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27164]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27163]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27165]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27164]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27166]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27165]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27167]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27166]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27168]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27167]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27169]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27169]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27170]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27170]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27171]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27171]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27172]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27168]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27173]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27173]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27174]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27172]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27175]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27175]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27176]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27174]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27177]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27177]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27178]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27176]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27179]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27179]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27180]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27178]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27181]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27181]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27182]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27180]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27183]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27182]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27184]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27183]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27185]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27184]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27186]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27185]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27186]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27187]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27188]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27187]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27189]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27188]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27190]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27189]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27190]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27191]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27192]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27191]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27193]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27193]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27194]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27192]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27195]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27194]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27195]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27196]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27197]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27196]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27197]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27198]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27199]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27198]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27200]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27199]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27201]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27200]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27202]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27201]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27203]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27202]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27204]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27203]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27205]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27204]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27206]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27205]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27206]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27207]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27208]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27207]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27209]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27208]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27210]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27209]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27210]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27211]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27212]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27211]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27213]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27212]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27214]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27213]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27214]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27215]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27216]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27215]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27217]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27216]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27218]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27217]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27219]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27219]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27220]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27218]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27221]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27220]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27222]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27222]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27223]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27223]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27221]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27224]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27225]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27224]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27226]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27225]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27227]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27226]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27228]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27227]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27229]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27228]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27230]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27229]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27231]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27230]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27232]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27231]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27233]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27232]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27234]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27233]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27235]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27234]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27236]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27235]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27237]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27236]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27238]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27237]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27239]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27238]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27240]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27239]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27241]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27240]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27242]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27241]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27243]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27242]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27244]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27244]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27245]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27243]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27246]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27245]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27247]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27246]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27248]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27247]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27249]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27248]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27250]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27249]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27251]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27251]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27252]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27252]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27253]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27250]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27253]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27254]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27255]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27255]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27256]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27254]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27256]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27257]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27258]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27257]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27259]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27258]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27260]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27259]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27260]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27261]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27262]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27261]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27263]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27262]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27264]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27263]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27265]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27264]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27266]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27265]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27267]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27267]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27268]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27266]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27269]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27268]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27270]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27269]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27271]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27270]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27272]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27271]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27273]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27272]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27274]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27273]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27275]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27274]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27276]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27275]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27277]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27276]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27278]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27277]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27279]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27278]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27280]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27280]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27281]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27281]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27282]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27282]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27283]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27279]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27284]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27283]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27284]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27285]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27286]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27285]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27287]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27286]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27288]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27287]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27289]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27289]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27290]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27288]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27291]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27291]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27292]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27292]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27293]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27290]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27293]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27294]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27295]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27294]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27296]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27295]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27297]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27296]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27298]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27297]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27299]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27298]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27300]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27299]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27301]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27300]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27302]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27301]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27303]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27302]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27304]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27303]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27305]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27304]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27306]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27305]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27307]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27306]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27308]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27308]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27309]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27307]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27310]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27309]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27311]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27310]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27312]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27311]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27313]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27312]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27314]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27313]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27315]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27315]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27316]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27314]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27317]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27316]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27318]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27317]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27319]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27318]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27320]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27319]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27321]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27320]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27322]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27321]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27323]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27322]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27324]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27323]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27325]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27324]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27326]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27325]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27327]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27326]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27328]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27327]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27329]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27328]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27330]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27329]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27331]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27330]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27332]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27331]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27333]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27332]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27334]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27334]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27335]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27335]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27336]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27336]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27337]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27337]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27338]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27333]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27338]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27339]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27340]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27340]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27341]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27339]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27342]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27341]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27343]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27342]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27344]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27343]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27345]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27344]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27346]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27345]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27347]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27346]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27348]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27347]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27349]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27348]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27350]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27349]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27350]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27351]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27352]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27351]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27353]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27352]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27354]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27353]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27354]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27355]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27356]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27355]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27357]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27356]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27358]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27358]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27359]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27357]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27360]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27359]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27361]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27360]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27362]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27361]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27363]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27362]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27364]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27364]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27365]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27365]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27366]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27366]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27367]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27363]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27368]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27367]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27369]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27368]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27370]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27369]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27371]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27370]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27372]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27371]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27372]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27373]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27374]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27373]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27375]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27374]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27376]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27375]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27376]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27377]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27378]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27377]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27379]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27378]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27380]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27379]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27381]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27380]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27382]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27381]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27383]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27383]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27384]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27382]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27385]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27384]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27386]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27385]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27387]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27386]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27388]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27387]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27389]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27388]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27390]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27389]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27391]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27390]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27391]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27392]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27393]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27392]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27394]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27394]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27395]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27395]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27396]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27396]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27397]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27397]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27398]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27393]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27398]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27399]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27400]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27399]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27401]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27400]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27402]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27401]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27403]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27402]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27404]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27403]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27405]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27404]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27406]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27406]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27407]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27405]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27408]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27407]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27409]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27408]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27410]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27409]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27411]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27411]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27412]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27410]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27413]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27413]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27414]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27414]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27415]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27415]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27416]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27412]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27416]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27417]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27418]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27417]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27419]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27418]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27420]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27419]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27420]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27421]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27422]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27421]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27423]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27423]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27424]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27422]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27425]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27424]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27426]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27425]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27427]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27426]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27428]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27427]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27429]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27428]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27430]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27429]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27431]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27430]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27432]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27432]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27433]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27431]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27434]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27433]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27435]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27434]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27436]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27435]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27437]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27436]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27438]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27437]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27439]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27438]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27440]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27439]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27441]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27441]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27442]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27442]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27443]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27443]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27444]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27444]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27445]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27445]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27446]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27440]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27447]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27446]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27448]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27447]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27449]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27448]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27450]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27449]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27451]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27451]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27452]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27450]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27453]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27453]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27454]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27452]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27455]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27454]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27456]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27456]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27457]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27457]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27458]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27458]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27459]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27455]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27459]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27460]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27461]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27460]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27462]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27461]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27462]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27463]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27464]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27463]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27465]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27464]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27466]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27465]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27466]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27467]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27468]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27467]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27469]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27468]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27470]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27469]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27471]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27470]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27472]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27471]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27473]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27472]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27474]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27474]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27475]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27473]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27475]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27476]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27477]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27476]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27478]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27477]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27479]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27478]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27480]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27479]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27480]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27481]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27482]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27481]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27483]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27483]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27484]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27484]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27485]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27485]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27486]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27482]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27486]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27487]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27488]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27487]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27489]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27488]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27490]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27489]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27491]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27490]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27492]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27491]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27493]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27492]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27494]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27493]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27495]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27494]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27496]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27495]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27497]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27497]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27498]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27498]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27499]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27496]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27500]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27500]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27501]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27499]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27501]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27502]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27503]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27502]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27504]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27503]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27505]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27504]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27506]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27505]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27507]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27506]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27508]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27507]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27508]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27509]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27510]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27509]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27511]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27511]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27512]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27512]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27513]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27513]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27514]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27510]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27515]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27514]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27516]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27515]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27517]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27516]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27518]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27517]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27519]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27518]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27520]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27519]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27521]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27520]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27522]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27522]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27523]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27521]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27524]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27523]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27524]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27525]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27526]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27525]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27527]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27526]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27528]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27527]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27528]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27529]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27530]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27529]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27531]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27530]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27532]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27531]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27532]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27533]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27534]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27533]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27535]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27534]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27536]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27535]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27536]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27537]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27537]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27538]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27539]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27538]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27540]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27540]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27541]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27541]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27542]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27539]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27543]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27542]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27544]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27544]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27545]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27543]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27546]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27546]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27547]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27545]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27548]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27547]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27549]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27548]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27550]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27549]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27551]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27550]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27552]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27551]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27553]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27552]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27554]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27553]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27555]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27554]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27556]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27555]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27557]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27556]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27558]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27557]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27559]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27558]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27560]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27559]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27561]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27560]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27562]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27561]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27563]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27562]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27564]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27563]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27565]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27564]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27566]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27565]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27567]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27566]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27568]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27568]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27569]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27569]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27570]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27570]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27571]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27567]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27572]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27571]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27573]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27572]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27574]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27573]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27575]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27574]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27576]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27575]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27577]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27576]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27578]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27577]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27579]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27578]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27580]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27579]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27581]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27580]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27582]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27581]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27583]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27582]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27584]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27583]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27585]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27584]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27586]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27585]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27587]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27586]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27588]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27587]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27589]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27588]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27590]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27589]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27591]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27590]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27592]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27591]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27592]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27594]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27593]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27594]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27595]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27593]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27596]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27596]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27597]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27595]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27598]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27597]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27599]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27598]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27600]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27599]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27600]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27601]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27602]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27601]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27603]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27602]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27604]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27603]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27604]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27605]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27606]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27605]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27607]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27606]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27608]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27607]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27608]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27609]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27610]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27609]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27611]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27610]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27612]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27611]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27612]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27613]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27614]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27613]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27615]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27614]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27616]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27615]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27617]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27616]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27618]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27617]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27619]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27619]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27620]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27618]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27621]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27620]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27622]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27622]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27623]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27623]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27624]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27624]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27625]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27621]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27626]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27625]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27627]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27626]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27628]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27627]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27629]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27628]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27630]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27629]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27631]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27630]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27632]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27631]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27633]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27632]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27634]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27633]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27635]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27634]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27636]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27635]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27636]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27637]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27638]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27637]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27639]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27638]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27640]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27639]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27640]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27641]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27642]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27641]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27643]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27643]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27644]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27642]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27645]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27644]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27646]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27645]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27647]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27646]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27648]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27647]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27649]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27648]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27650]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27649]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27651]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27650]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27652]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27652]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27653]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27653]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27654]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27651]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27655]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27654]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27656]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27655]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27657]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27656]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27658]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27657]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27659]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27658]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27660]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27659]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27661]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27660]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27662]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27661]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27663]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27662]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27664]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27663]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27665]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27664]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27666]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27666]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27667]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27665]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27668]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27667]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27668]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27669]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27670]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27669]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27671]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27670]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27672]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27671]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27673]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27672]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27674]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27673]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27675]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27674]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27676]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27675]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27677]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27676]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27678]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27677]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27679]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27678]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27680]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27679]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27681]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27681]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27682]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27682]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27683]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27683]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27684]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27680]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27684]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27685]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27686]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27685]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27687]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27687]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27688]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27686]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27689]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27688]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27690]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27689]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27691]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27690]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27692]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27691]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27693]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27692]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27694]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27693]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27694]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27695]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27696]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27695]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27697]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27696]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27698]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27697]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27698]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27699]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27700]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27699]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27701]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27700]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27702]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27701]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27703]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27702]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27704]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27703]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27705]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27704]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27706]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27705]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27707]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27706]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27708]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27707]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27709]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27709]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27710]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27710]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27711]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27711]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27712]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27708]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27713]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27712]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27714]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27713]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27715]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27714]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27716]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27715]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27717]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27716]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27718]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27717]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27719]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27718]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27720]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27719]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27721]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27720]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27722]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27721]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27723]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27722]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27724]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27723]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27725]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27724]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27726]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27725]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27727]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27726]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27728]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27727]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27729]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27728]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27730]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27729]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27731]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27730]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27732]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27731]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27733]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27732]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27734]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27733]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27735]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27734]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27736]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27735]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27737]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27736]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27738]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27737]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27739]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27738]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27740]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27739]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27741]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27740]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27742]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27741]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27743]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27742]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27744]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27743]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27745]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27744]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27746]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27745]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27747]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27746]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27748]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27747]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27749]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27748]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27750]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27749]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27751]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27750]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27752]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27751]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27753]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27752]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27754]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27753]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27755]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27754]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27756]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27755]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27757]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27756]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27758]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27757]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27759]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27758]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27760]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27759]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27761]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27760]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27762]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27762]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27763]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27763]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27764]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27761]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27764]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27765]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27766]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27765]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27767]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27766]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27768]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27767]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27769]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27768]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27770]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27769]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27771]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27770]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27772]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27771]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27772]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27773]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27774]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27773]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27775]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27774]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27776]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27775]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27777]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27776]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27778]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27777]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27779]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27778]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27780]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27779]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27781]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27780]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27782]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27781]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27783]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27782]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27784]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27784]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27785]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27783]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27786]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27785]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27787]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27786]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27788]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27787]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27789]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27788]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27790]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27790]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27791]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27791]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27792]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27792]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27793]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27789]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27794]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27793]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27795]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27794]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27796]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27795]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27797]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27796]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27798]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27797]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27798]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27799]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27800]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27799]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27801]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27800]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27802]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27801]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27802]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27803]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27804]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27803]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27805]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27804]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27806]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27805]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27807]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27806]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27808]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27807]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27809]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27809]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27810]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27808]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27811]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27810]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27812]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27811]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27813]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27812]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27814]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27813]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27815]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27814]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27816]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27815]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27817]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27816]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27818]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27817]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27819]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27818]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27820]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27820]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27821]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27819]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27822]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27821]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27823]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27822]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27824]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27823]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27824]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27825]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27826]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27825]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27827]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27826]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27828]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27827]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27828]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27829]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27830]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27829]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27831]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27831]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27832]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27830]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27833]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27832]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27834]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27833]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27835]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27834]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27836]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27835]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27837]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27836]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27838]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27837]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27839]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27838]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27840]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27839]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27841]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27840]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27842]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27841]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27843]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27842]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27844]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27843]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27845]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27844]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27846]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27845]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27847]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27846]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27848]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27848]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27849]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27849]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27850]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27850]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27851]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27847]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27852]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27851]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27853]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27852]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27854]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27853]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27855]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27855]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27856]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27854]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27857]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27856]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27858]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27857]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27859]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27858]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27860]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27859]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27861]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27860]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27862]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27861]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27863]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27862]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27864]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27863]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27865]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27864]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27866]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27865]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27867]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27866]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27868]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27867]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27869]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27868]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27870]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27869]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27871]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27870]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27872]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27871]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27873]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27872]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27874]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27873]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27875]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27874]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27876]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27875]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27877]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27876]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27878]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27878]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27879]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27877]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27879]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27880]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27881]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27880]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27881]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27882]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27883]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27882]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27884]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27883]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27885]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27884]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27886]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27885]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27886]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27887]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27888]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27887]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27889]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27888]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27890]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27889]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27890]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27891]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27892]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27891]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27893]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27892]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27894]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27893]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27895]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27894]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27896]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27895]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27897]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27896]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27898]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27897]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27898]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27899]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27900]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27899]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27901]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27900]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27902]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27901]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27903]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27903]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27904]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27904]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27905]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27902]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27906]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27905]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27907]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27906]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27908]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27907]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27909]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27908]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27910]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27909]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27911]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27910]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27912]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27911]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27913]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27912]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27914]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27913]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27915]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27914]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27916]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27915]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27917]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27916]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27918]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27917]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27919]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27918]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27920]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27919]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27920]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27921]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27922]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27921]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27923]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27922]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27924]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27923]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27924]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27925]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27926]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27925]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27927]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27927]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27928]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27926]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27929]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27928]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27930]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27929]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27931]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27930]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27932]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27932]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27933]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27933]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27934]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27934]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27935]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27931]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27935]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27936]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27937]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27936]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27938]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27937]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27939]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27938]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27940]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27939]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27940]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27941]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27942]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27941]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27943]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27942]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27944]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27943]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27944]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27945]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27946]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27945]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27947]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27946]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27948]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27947]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27948]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27949]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27950]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27949]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27951]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27951]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27952]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27950]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27953]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27952]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27954]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27953]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27955]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27954]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27955]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27956]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27957]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27956]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27958]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27957]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27959]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27958]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27960]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27959]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27961]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27961]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27962]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27962]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27963]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27963]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27964]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27960]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27964]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27965]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27966]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27965]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27967]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27966]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27968]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27967]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27969]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27968]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27970]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27969]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27971]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27970]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27972]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27971]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27973]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27972]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27974]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27974]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27975]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27973]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27976]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27976]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 27977]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27975]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 27977]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27979]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27978]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27979]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 27980]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27978]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27981]]} + {:process 1 :type :fail :f :txn :value [[:append 6 27980]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27982]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27981]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 27983]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27982]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 27984]]} + {:process 0 :type :fail :f :txn :value [[:append 3 27983]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27985]]} + {:process 1 :type :fail :f :txn :value [[:append 7 27984]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 27986]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27985]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 27986]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 27987]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 27988]]} + {:process 0 :type :fail :f :txn :value [[:append 0 27987]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27989]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27989]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 27990]]} + {:process 0 :type :fail :f :txn :value [[:append 5 27990]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27991]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27991]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 27992]]} + {:process 1 :type :fail :f :txn :value [[:append 4 27988]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 27993]]} + {:process 0 :type :fail :f :txn :value [[:append 2 27992]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 27994]]} + {:process 0 :type :fail :f :txn :value [[:append 1 27994]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 27993]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 27995]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 27996]]} + {:process 0 :type :fail :f :txn :value [[:append 7 27995]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 27997]]} + {:process 0 :type :fail :f :txn :value [[:append 6 27997]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 27998]]} + {:process 1 :type :fail :f :txn :value [[:append 5 27996]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 27999]]} + {:process 0 :type :fail :f :txn :value [[:append 4 27998]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28000]]} + {:process 1 :type :fail :f :txn :value [[:append 0 27999]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28001]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28000]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28002]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28001]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28003]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28002]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28004]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28003]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28005]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28004]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28006]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28005]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28007]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28006]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28008]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28007]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28009]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28008]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28010]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28009]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28011]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28010]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28012]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28011]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28013]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28012]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28014]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28013]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28015]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28014]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28016]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28015]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28017]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28016]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28018]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28017]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28019]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28018]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28020]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28020]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28021]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28019]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28021]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28022]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28023]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28022]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28024]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28023]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28024]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28025]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28026]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28025]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28027]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28026]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28028]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28027]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28028]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28029]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28030]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28029]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28031]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28030]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28032]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28032]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28033]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28031]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28033]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28034]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28035]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28035]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28036]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28034]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28037]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28036]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28038]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28037]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28039]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28038]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28040]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28039]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28041]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28040]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28042]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28041]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28043]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28042]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28044]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28044]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28045]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28043]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28046]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28045]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28047]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28047]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28048]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28046]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28049]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28048]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28049]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28050]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28051]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28051]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28052]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28050]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28052]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28054]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28053]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28054]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28055]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28053]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28055]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28056]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28057]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28056]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28057]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28058]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28059]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28058]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28060]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28059]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28061]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28060]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28062]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28061]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28063]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28062]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28064]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28063]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28065]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28064]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28066]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28065]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28067]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28066]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28068]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28067]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28069]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28068]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28070]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28070]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28071]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28071]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28072]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28069]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28073]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28073]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28074]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28072]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28075]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28074]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28076]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28075]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28077]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28076]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28078]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28077]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28079]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28078]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28080]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28079]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28080]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28081]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28082]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28081]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28083]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28082]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28084]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28083]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28085]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28084]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28086]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28085]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28087]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28086]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28088]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28087]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28088]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28089]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28090]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28089]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28091]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28090]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28092]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28091]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28092]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28093]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28094]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28093]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28095]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28094]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28096]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28095]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28097]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28096]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28098]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28098]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28099]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28097]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28100]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28100]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28101]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28099]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28102]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28101]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28103]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28102]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28104]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28103]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28104]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28105]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28105]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28106]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28107]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28106]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28107]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28108]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28109]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28108]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28110]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28109]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28111]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28110]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28112]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28111]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28112]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28113]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28114]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28113]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28115]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28114]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28116]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28115]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28116]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28117]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28118]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28118]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28119]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28117]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28120]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28119]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28121]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28120]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28122]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28122]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28123]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28123]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28124]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28121]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28125]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28124]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28126]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28125]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28127]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28126]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28128]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28127]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28129]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28128]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28130]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28129]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28131]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28130]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28132]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28131]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28133]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28132]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28134]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28133]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28135]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28134]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28135]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28136]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28137]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28136]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28138]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28137]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28139]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28138]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28140]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28139]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28140]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28141]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28142]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28141]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28143]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28142]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28144]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28143]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28144]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28145]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28146]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28145]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28147]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28146]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28148]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28147]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28149]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28148]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28150]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28149]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28151]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28150]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28152]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28151]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28153]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28152]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28154]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28153]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28155]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28154]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28156]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28155]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28157]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28156]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28158]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28157]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28159]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28158]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28160]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28159]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28161]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28160]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28162]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28162]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28163]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28161]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28164]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28163]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28165]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28164]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28165]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28166]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28167]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28166]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28168]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28167]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28169]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28168]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28170]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28169]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28171]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28171]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28172]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28172]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28173]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28170]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28174]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28173]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28175]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28175]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28176]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28174]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28177]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28176]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28178]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28177]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28179]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28178]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28180]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28179]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28181]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28180]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28182]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28181]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28182]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28183]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28184]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28183]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28185]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28184]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28186]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28185]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28187]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28186]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28188]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28187]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28189]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28188]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28190]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28189]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28190]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28191]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28192]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28191]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28193]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28192]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28194]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28193]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28194]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28195]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28196]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28195]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28197]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28196]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28198]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28197]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28199]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28198]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28200]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28199]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28201]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28201]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28200]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28202]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28203]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28202]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28204]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28203]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28205]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28204]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28206]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28205]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28207]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28206]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28208]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28207]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28209]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28208]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28210]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28209]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28211]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28210]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28212]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28211]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28213]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28212]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28214]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28213]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28215]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28214]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28216]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28215]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28217]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28216]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28218]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28217]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28219]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28218]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28220]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28219]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28220]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28221]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28222]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28221]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28223]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28223]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28224]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28222]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28225]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28224]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28226]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28225]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28227]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28227]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28228]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28228]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28229]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28226]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28229]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28230]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28231]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28230]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28232]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28231]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28233]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28232]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28234]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28233]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28235]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28234]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28236]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28235]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28237]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28236]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28238]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28237]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28239]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28238]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28240]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28239]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28241]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28240]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28242]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28241]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28243]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28242]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28244]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28243]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28244]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28245]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28246]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28245]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28247]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28246]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28248]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28247]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28249]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28249]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28250]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28250]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28251]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28248]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28252]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28251]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28253]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28252]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28254]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28253]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28255]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28254]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28256]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28255]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28257]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28257]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28258]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28258]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28259]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28259]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28260]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28256]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28261]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28260]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28262]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28261]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28263]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28262]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28264]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28263]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28265]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28264]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28266]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28265]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28267]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28266]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28267]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28268]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28269]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28268]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28270]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28270]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28271]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28269]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28272]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28271]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28272]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28273]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28274]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28273]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28275]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28274]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28276]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28275]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28277]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28276]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28277]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28278]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28279]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28278]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28280]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28279]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28281]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28280]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28282]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28281]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28283]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28283]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28284]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28284]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28285]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28282]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28285]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28286]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28287]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28286]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28288]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28287]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28288]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28289]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28290]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28289]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28291]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28290]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28292]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28291]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28292]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28293]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28294]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28293]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28295]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28294]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28296]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28295]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28297]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28297]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28298]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28296]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28299]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28298]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28300]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28299]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28301]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28300]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28302]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28301]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28303]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28302]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28304]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28303]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28305]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28304]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28306]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28305]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28307]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28306]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28308]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28307]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28309]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28308]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28310]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28310]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28311]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28311]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28312]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28312]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28309]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28313]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28314]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28313]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28315]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28314]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28316]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28315]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28316]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28317]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28318]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28317]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28319]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28319]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28320]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28318]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28321]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28320]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28322]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28321]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28323]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28322]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28324]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28323]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28325]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28324]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28326]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28325]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28327]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28326]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28328]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28327]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28329]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28328]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28330]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28329]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28331]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28330]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28332]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28331]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28333]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28333]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28332]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28335]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28334]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28335]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28336]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28334]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28337]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28336]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28338]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28337]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28339]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28339]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28340]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28340]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28341]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28341]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28342]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28342]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28343]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28343]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28344]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28344]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28345]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28345]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28346]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28346]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28347]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28347]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28338]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28348]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28349]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28349]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28350]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28348]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28351]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28350]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28352]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28351]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28353]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28352]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28354]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28353]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28355]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28354]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28356]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28355]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28357]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28356]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28358]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28357]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28359]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28358]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28360]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28359]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28361]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28360]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28362]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28362]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28363]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28361]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28364]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28363]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28365]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28364]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28366]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28365]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28367]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28366]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28368]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28367]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28369]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28368]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28370]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28369]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28370]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28371]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28372]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28371]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28373]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28372]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28374]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28373]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28375]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28375]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28376]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28376]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28377]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28377]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28378]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28378]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28379]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28374]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28379]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28380]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28381]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28380]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28382]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28382]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28383]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28381]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28383]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28384]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28385]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28384]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28386]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28385]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28387]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28386]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28388]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28388]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28389]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28387]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28390]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28390]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28391]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28389]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28392]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28391]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28393]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28392]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28394]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28393]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28395]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28394]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28396]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28395]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28397]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28396]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28398]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28397]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28399]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28398]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28400]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28399]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28401]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28400]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28402]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28401]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28403]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28403]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28404]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28404]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28405]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28402]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28406]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28405]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28406]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28407]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28408]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28407]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28409]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28409]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28410]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28408]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28411]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28410]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28412]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28411]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28413]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28412]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28414]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28413]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28415]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28414]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28416]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28415]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28417]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28416]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28418]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28417]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28419]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28418]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28420]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28419]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28421]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28420]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28422]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28421]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28423]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28422]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28424]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28423]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28425]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28424]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28426]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28425]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28427]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28426]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28428]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28427]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28429]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28428]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28430]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28429]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28431]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28430]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28432]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28431]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28433]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28432]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28434]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28433]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28435]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28434]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28436]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28435]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28437]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28436]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28438]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28437]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28439]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28438]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28440]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28439]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28441]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28440]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28442]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28441]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28443]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28442]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28444]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28443]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28445]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28444]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28446]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28445]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28447]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28447]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28448]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28446]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28449]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28448]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28450]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28449]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28450]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28451]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28452]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28451]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28453]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28452]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28454]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28453]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28455]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28455]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28456]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28456]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28457]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28454]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28458]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28458]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28459]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28457]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28460]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28459]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28461]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28461]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28462]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28460]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28462]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28463]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28464]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28463]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28465]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28464]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28466]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28465]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28466]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28467]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28468]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28467]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28469]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28468]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28470]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28469]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28470]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28471]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28472]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28471]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28473]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28472]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28474]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28473]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28474]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28475]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28476]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28475]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28477]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28476]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28478]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28477]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28478]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28479]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28480]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28479]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28481]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28481]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28482]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28482]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28483]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28480]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28484]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28484]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28485]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28483]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28486]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28485]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28487]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28486]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28488]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28487]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28489]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28488]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28490]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28489]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28491]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28490]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28492]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28491]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28493]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28492]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28494]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28493]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28495]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28494]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28496]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28495]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28497]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28496]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28498]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28497]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28499]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28498]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28500]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28499]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28501]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28500]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28502]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28501]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28503]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28502]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28504]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28504]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28503]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28505]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28506]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28505]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28507]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28506]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28508]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28507]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28509]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28509]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28510]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28508]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28511]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28510]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28512]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28511]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28513]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28512]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28514]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28513]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28515]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28514]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28516]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28515]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28517]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28516]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28518]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28517]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28519]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28518]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28520]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28519]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28521]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28520]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28522]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28521]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28523]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28522]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28524]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28523]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28525]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28524]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28526]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28525]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28527]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28526]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28528]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28527]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28529]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28528]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28530]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28529]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28531]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28530]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28532]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28531]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28533]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28532]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28534]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28533]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28535]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28534]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28536]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28536]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28537]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28535]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28538]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28537]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28539]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28538]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28540]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28539]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28541]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28540]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28542]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28541]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28543]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28542]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28544]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28543]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28545]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28544]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28546]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28545]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28547]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28546]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28548]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28547]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28549]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28548]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28550]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28549]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28551]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28550]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28552]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28551]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28553]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28552]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28554]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28553]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28554]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28555]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28556]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28555]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28557]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28556]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28558]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28557]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28558]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28559]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28560]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28559]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28560]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28562]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28561]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28561]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28563]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28563]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28564]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28564]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28565]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28562]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28565]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28566]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28567]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28566]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28568]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28567]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28569]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28568]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28570]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28569]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28571]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28570]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28572]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28571]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28573]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28572]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28574]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28573]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28575]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28574]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28576]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28575]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28577]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28576]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28578]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28577]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28579]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28578]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28580]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28579]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28580]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28581]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28582]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28581]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28583]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28583]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28584]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28582]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28585]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28585]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28586]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28584]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28587]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28586]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28588]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28587]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28589]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28589]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28590]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28590]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28591]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28591]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28592]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28592]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28593]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28588]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28593]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28594]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28595]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28594]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28596]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28595]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28597]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28596]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28598]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28597]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28599]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28598]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28600]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28599]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28601]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28600]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28602]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28601]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28603]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28602]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28604]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28603]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28604]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28605]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28606]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28605]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28607]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28607]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28608]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28606]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28609]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28608]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28610]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28609]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28611]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28610]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28612]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28611]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28613]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28612]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28614]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28613]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28615]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28614]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28616]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28615]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28617]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28616]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28618]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28617]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28618]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28619]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28620]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28619]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28621]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28621]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28622]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28622]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28623]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28623]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28624]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28620]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28625]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28624]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28626]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28626]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28627]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28625]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28628]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28627]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28629]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28628]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28630]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28629]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28630]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28631]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28632]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28631]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28633]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28632]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28634]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28633]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28634]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28635]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28636]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28635]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28637]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28636]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28638]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28637]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28638]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28639]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28640]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28639]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28641]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28640]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28642]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28641]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28643]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28642]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28644]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28643]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28645]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28644]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28646]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28645]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28646]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28647]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28648]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28647]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28649]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28649]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28650]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28648]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28651]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28650]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28652]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28652]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28653]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28653]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28654]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28654]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28655]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28651]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28656]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28655]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28657]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28656]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28658]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28657]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28658]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28659]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28660]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28659]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28661]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28660]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28662]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28661]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28662]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28663]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28664]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28663]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28665]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28664]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28666]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28665]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28667]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28666]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28668]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28667]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28669]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28668]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28670]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28669]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28671]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28670]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28672]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28671]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28673]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28673]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28672]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28675]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28675]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28674]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28676]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28674]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28677]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28676]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28678]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28677]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28678]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28679]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28680]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28679]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28681]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28681]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28682]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28682]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28683]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28683]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28680]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28685]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28684]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28684]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28686]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28685]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28687]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28686]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28688]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28687]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28689]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28688]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28690]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28689]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28691]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28690]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28692]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28691]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28693]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28692]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28694]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28694]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28695]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28693]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28696]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28695]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28697]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28696]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28698]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28697]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28699]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28698]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28700]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28699]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28701]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28700]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28702]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28701]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28703]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28702]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28704]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28703]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28705]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28704]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28706]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28705]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28707]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28706]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28708]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28707]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28709]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28708]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28710]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28709]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28711]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28711]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28712]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28712]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28713]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28713]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28714]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28710]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28714]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28715]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28716]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28715]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28717]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28717]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28718]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28716]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28719]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28718]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28720]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28719]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28720]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28721]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28722]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28721]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28723]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28722]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28724]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28723]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28724]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28725]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28726]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28725]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28727]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28726]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28728]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28727]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28729]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28728]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28730]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28729]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28731]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28730]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28732]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28731]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28732]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28733]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28734]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28733]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28735]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28734]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28736]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28736]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28737]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28737]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28738]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28738]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28739]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28735]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28740]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28739]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28741]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28741]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28742]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28740]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28743]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28742]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28744]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28743]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28745]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28744]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28746]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28745]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28747]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28746]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28748]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28747]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28749]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28748]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28750]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28749]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28751]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28750]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28752]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28751]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28753]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28752]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28754]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28753]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28755]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28754]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28756]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28755]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28757]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28756]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28758]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28757]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28759]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28758]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28760]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28759]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28761]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28760]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28762]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28761]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28763]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28762]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28764]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28763]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28765]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28764]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28766]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28766]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28767]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28765]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28768]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28767]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28769]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28768]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28770]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28769]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28771]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28770]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28772]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28771]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28772]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28773]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28774]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28773]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28775]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28774]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28776]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28775]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28777]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28776]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28778]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28777]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28779]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28778]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28780]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28779]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28781]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28780]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28782]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28781]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28783]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28782]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28784]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28783]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28785]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28784]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28786]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28785]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28787]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28786]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28788]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28787]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28789]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28788]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28789]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28790]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28791]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28790]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28792]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28791]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28793]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28792]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28794]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28794]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28793]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28795]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28796]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28795]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28797]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28796]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28798]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28797]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28798]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28799]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28800]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28799]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28801]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28800]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28802]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28801]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28803]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28802]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28804]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28803]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28805]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28804]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28806]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28805]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28806]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28807]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28808]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28807]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28809]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28808]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28810]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28809]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28810]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28811]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28812]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28811]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28813]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28812]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28814]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28813]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28814]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28815]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28816]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28815]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28817]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28817]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28818]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28816]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28819]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28818]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28820]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28819]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28821]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28820]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28822]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28822]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28823]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28823]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28824]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28824]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28825]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28821]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28826]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28825]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28827]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28826]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28828]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28827]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28829]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28828]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28830]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28829]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28831]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28830]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28832]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28831]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28833]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28832]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28834]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28833]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28834]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28835]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28836]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28835]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28837]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28836]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28838]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28838]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28839]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28837]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28840]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28839]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28841]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28840]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28842]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28841]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28843]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28842]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28844]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28843]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28845]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28844]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28845]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28846]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28847]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28846]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28847]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28848]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28849]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28848]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28850]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28850]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28851]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28851]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28852]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28852]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28853]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28853]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28854]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28849]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28855]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28854]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28856]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28855]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28857]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28856]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28858]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28857]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28859]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28858]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28860]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28859]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28861]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28861]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28862]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28860]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28863]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28862]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28864]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28863]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28864]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28865]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28866]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28865]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28867]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28866]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28868]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28867]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28868]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28869]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28870]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28869]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28871]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28870]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28872]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28871]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28872]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28873]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28874]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28873]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28875]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28874]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28876]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28875]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28877]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28877]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28878]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28878]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28879]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28876]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28879]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28880]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28881]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28880]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28882]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28881]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28883]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28882]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28884]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28883]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28885]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28885]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28886]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28884]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28887]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28886]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28888]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28887]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28889]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28888]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28890]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28889]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28891]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28890]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28892]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28891]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28893]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28892]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28894]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28893]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28895]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28894]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28896]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28895]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28897]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28896]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28897]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28898]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28899]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28898]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28900]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28899]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28901]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28900]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28902]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28901]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28903]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28902]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28903]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28904]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28905]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28904]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28906]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28906]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28907]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28907]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28908]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28908]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28909]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28909]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28910]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28905]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28911]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28910]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28912]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28911]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28913]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28912]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28914]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28913]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28915]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28914]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28916]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28915]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28917]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28916]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28918]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28917]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28919]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28918]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28920]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28919]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28921]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28920]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28922]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28921]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28923]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28922]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28924]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28923]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28925]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28924]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28926]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28925]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28927]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28926]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28928]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28927]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28929]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28928]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28930]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28929]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28931]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28930]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28932]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28931]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28933]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28933]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28934]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28932]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28935]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28935]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28936]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28936]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28937]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28934]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28938]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28937]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28939]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28938]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28940]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28939]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28940]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28941]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28942]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28941]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28943]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28942]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28944]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28943]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28944]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28945]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28946]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28945]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28947]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28946]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28948]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28947]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28949]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28948]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28950]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28949]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28951]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28950]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28952]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28951]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28952]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28953]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28954]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28953]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28955]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28954]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28956]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28955]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28957]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28956]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28958]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28957]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28958]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28960]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28959]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28960]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28961]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28959]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28962]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28962]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28963]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28963]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28964]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28964]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28965]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28961]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28966]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28965]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28967]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28966]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28968]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28967]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28969]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28968]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28970]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28969]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28970]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28971]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28972]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28971]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28973]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28972]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28974]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28973]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28974]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28975]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 28976]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28975]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28977]]} + {:process 1 :type :fail :f :txn :value [[:append 3 28976]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28978]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28977]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28978]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28979]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 28980]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28979]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28981]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28981]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 28982]]} + {:process 1 :type :fail :f :txn :value [[:append 0 28980]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28983]]} + {:process 0 :type :fail :f :txn :value [[:append 1 28982]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28984]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28983]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 28985]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28984]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 28986]]} + {:process 1 :type :fail :f :txn :value [[:append 1 28985]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 28987]]} + {:process 0 :type :fail :f :txn :value [[:append 6 28986]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28988]]} + {:process 1 :type :fail :f :txn :value [[:append 4 28987]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 28989]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28988]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 28990]]} + {:process 1 :type :fail :f :txn :value [[:append 6 28989]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 28991]]} + {:process 0 :type :fail :f :txn :value [[:append 3 28990]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28992]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28992]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 28993]]} + {:process 0 :type :fail :f :txn :value [[:append 0 28993]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 28994]]} + {:process 0 :type :fail :f :txn :value [[:append 7 28994]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 28995]]} + {:process 1 :type :fail :f :txn :value [[:append 5 28991]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 28996]]} + {:process 0 :type :fail :f :txn :value [[:append 5 28995]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 28997]]} + {:process 1 :type :fail :f :txn :value [[:append 7 28996]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 28998]]} + {:process 0 :type :fail :f :txn :value [[:append 4 28997]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 28999]]} + {:process 1 :type :fail :f :txn :value [[:append 2 28998]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29000]]} + {:process 0 :type :fail :f :txn :value [[:append 2 28999]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29001]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29000]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29002]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29001]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29002]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29003]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29004]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29003]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29005]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29005]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29006]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29004]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29007]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29006]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29008]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29007]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29009]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29008]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29010]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29009]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29011]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29010]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29012]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29011]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29013]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29012]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29014]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29013]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29015]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29014]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29016]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29015]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29016]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29017]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29018]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29017]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29019]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29018]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29020]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29020]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29021]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29021]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29022]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29022]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29023]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29019]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29024]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29023]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29025]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29024]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29026]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29025]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29027]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29027]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29028]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29026]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29029]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29029]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29030]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29028]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29030]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29031]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29032]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29031]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29033]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29032]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29034]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29033]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29035]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29034]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29036]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29035]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29037]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29036]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29038]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29037]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29039]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29038]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29040]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29039]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29041]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29040]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29042]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29041]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29042]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29043]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29044]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29043]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29045]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29044]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29046]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29045]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29047]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29046]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29048]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29047]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29049]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29049]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29050]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29048]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29051]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29051]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29052]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29050]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29053]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29052]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29054]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29053]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29054]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29055]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29056]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29055]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29057]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29056]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29058]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29057]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29058]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29059]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29060]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29059]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29061]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29060]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29062]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29061]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29063]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29062]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29064]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29063]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29065]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29064]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29066]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29065]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29066]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29067]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29068]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29067]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29069]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29068]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29070]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29069]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29070]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29071]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29072]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29071]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29073]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29072]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29073]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29074]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29075]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29075]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29076]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29074]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29076]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29077]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29078]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29077]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29079]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29078]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29080]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29079]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29081]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29080]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29082]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29081]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29083]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29082]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29084]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29083]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29085]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29084]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29085]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29086]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29087]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29086]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29088]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29087]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29089]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29088]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29090]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29089]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29091]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29090]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29092]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29091]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29093]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29092]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29094]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29093]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29095]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29094]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29096]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29095]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29097]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29096]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29098]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29097]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29099]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29098]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29100]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29099]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29101]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29100]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29102]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29102]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29103]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29101]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29104]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29103]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29105]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29104]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29106]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29105]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29107]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29106]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29108]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29107]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29108]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29109]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29110]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29109]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29111]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29110]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29112]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29111]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29112]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29113]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29114]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29113]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29115]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29114]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29116]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29115]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29117]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29116]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29118]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29117]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29119]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29118]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29120]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29119]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29121]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29120]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29122]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29121]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29123]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29122]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29124]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29123]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29125]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29124]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29126]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29125]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29127]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29127]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29128]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29126]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29129]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29128]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29130]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29129]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29131]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29130]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29132]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29131]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29133]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29132]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29134]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29133]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29135]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29134]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29136]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29135]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29137]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29136]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29138]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29137]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29139]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29138]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29140]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29139]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29141]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29140]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29142]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29141]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29143]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29142]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29144]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29143]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29145]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29144]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29146]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29145]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29147]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29146]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29148]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29147]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29149]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29148]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29150]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29149]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29151]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29150]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29152]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29152]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29153]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29151]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29154]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29153]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29155]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29155]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29156]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29156]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29157]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29157]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29158]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29154]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29158]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29159]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29160]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29159]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29161]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29160]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29162]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29161]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29163]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29162]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29164]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29163]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29165]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29164]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29166]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29165]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29167]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29166]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29168]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29167]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29169]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29168]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29170]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29169]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29171]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29170]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29172]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29171]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29173]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29172]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29174]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29174]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29175]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29173]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29176]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29175]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29177]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29176]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29178]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29177]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29178]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29179]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29180]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29179]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29181]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29180]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29182]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29181]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29183]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29182]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29184]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29183]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29185]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29185]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29186]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29186]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29187]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29184]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29188]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29187]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29189]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29188]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29190]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29189]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29191]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29190]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29192]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29191]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29193]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29192]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29194]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29194]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29195]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29193]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29196]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29195]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29197]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29196]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29198]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29197]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29199]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29199]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29200]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29198]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29201]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29200]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29202]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29201]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29202]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29203]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29204]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29203]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29205]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29204]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29206]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29205]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29207]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29206]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29208]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29207]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29209]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29208]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29210]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29209]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29211]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29211]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29212]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29212]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29213]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29213]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29214]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29210]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29215]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29214]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29216]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29215]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29217]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29216]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29218]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29217]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29219]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29218]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29220]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29219]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29221]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29220]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29222]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29222]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29221]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29223]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29224]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29223]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29225]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29224]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29226]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29225]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29226]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29227]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29228]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29227]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29229]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29228]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29230]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29229]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29230]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29231]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29232]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29231]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29233]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29232]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29234]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29233]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29234]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29235]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29236]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29235]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29237]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29236]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29238]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29237]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29238]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29239]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29240]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29239]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29241]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29241]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29242]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29242]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29243]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29243]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29244]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29240]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29245]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29244]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29246]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29245]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29247]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29246]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29248]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29247]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29249]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29248]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29250]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29249]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29251]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29250]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29252]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29251]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29253]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29252]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29254]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29253]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29255]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29254]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29256]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29255]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29257]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29256]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29258]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29257]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29259]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29258]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29260]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29259]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29261]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29260]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29262]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29261]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29263]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29262]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29264]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29263]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29265]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29264]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29266]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29265]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29267]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29266]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29268]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29267]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29269]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29268]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29270]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29269]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29271]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29270]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29272]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29271]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29273]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29272]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29274]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29273]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29275]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29274]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29276]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29275]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29277]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29276]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29278]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29277]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29279]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29278]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29280]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29279]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29281]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29280]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29282]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29281]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29283]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29282]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29284]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29283]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29285]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29284]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29286]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29285]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29287]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29286]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29288]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29287]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29289]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29288]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29290]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29289]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29291]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29290]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29292]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29291]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29293]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29292]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29294]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29294]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29295]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29295]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29296]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29293]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29297]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29296]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29298]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29298]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29299]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29297]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29300]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29299]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29301]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29300]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29301]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29302]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29303]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29302]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29303]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29304]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29305]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29304]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29306]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29305]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29307]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29306]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29308]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29307]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29308]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29309]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29310]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29309]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29311]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29310]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29312]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29311]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29312]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29313]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29314]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29313]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29315]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29314]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29316]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29315]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29317]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29316]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29318]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29317]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29319]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29319]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29320]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29318]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29321]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29320]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29322]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29321]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29323]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29322]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29324]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29324]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29325]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29325]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29326]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29326]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29327]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29323]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29328]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29327]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29329]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29328]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29330]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29329]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29331]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29330]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29332]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29331]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29332]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29333]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29334]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29333]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29335]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29334]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29336]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29335]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29336]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29337]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29338]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29337]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29339]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29339]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29340]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29338]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29341]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29340]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29342]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29341]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29343]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29342]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29344]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29343]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29345]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29344]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29346]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29345]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29347]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29346]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29348]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29347]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29349]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29348]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29350]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29349]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29351]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29350]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29351]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29352]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29353]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29353]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29354]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29354]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29355]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29355]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29356]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29356]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29352]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29358]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29357]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29358]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29359]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29357]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29360]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29359]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29361]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29360]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29362]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29362]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29363]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29361]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29364]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29364]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29365]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29363]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29366]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29365]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29367]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29366]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29368]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29367]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29369]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29368]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29370]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29369]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29371]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29370]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29372]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29371]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29373]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29372]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29374]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29373]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29375]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29374]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29376]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29375]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29377]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29376]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29378]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29377]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29379]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29378]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29380]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29379]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29381]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29380]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29382]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29382]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29383]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29383]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29384]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29384]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29385]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29385]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29386]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29381]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29387]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29386]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29388]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29387]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29389]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29388]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29390]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29389]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29391]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29390]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29392]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29391]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29393]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29392]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29394]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29393]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29395]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29394]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29396]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29395]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29397]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29396]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29398]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29397]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29399]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29398]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29400]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29399]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29401]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29400]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29402]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29401]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29403]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29402]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29404]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29403]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29405]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29404]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29405]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29406]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29407]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29406]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29408]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29407]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29409]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29408]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29410]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29409]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29411]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29410]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29412]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29412]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29413]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29411]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29414]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29413]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29414]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29415]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29416]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29415]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29417]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29416]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29418]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29417]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29419]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29418]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29420]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29419]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29421]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29420]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29422]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29421]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29423]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29422]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29424]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29423]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29425]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29424]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29426]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29425]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29427]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29426]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29428]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29427]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29429]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29428]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29430]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29429]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29431]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29430]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29432]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29431]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29433]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29432]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29434]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29433]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29435]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29434]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29436]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29436]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29437]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29435]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29437]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29438]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29439]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29438]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29440]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29439]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29440]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29441]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29442]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29441]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29443]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29442]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29444]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29443]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29444]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29445]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29446]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29445]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29447]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29446]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29448]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29447]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29449]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29448]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29450]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29449]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29451]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29450]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29452]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29451]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29452]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29453]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29454]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29453]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29455]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29454]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29456]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29455]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29456]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29457]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29458]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29457]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29459]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29459]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29460]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29458]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29461]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29460]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29462]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29461]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29463]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29462]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29464]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29464]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29465]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29465]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29466]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29466]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29467]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29463]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29468]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29467]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29469]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29468]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29470]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29469]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29471]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29470]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29471]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29472]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29473]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29472]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29474]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29473]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29475]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29474]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29476]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29475]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29476]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29477]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29478]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29477]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29479]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29478]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29480]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29479]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29481]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29481]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29482]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29482]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29483]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29480]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29484]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29483]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29485]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29484]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29486]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29485]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29486]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29487]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29488]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29487]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29489]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29488]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29490]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29489]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29490]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29491]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29492]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29491]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29493]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29492]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29494]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29493]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29495]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29495]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29496]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29496]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29497]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29497]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29498]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29494]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29499]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29498]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29500]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29499]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29501]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29500]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29502]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29502]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29503]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29501]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29504]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29503]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29505]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29504]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29506]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29505]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29507]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29506]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29508]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29507]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29509]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29508]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29510]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29509]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29510]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29511]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29512]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29511]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29513]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29512]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29514]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29513]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29514]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29515]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29516]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29515]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29517]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29516]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29518]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29517]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29518]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29519]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29520]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29519]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29521]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29520]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29522]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29521]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29522]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29523]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29524]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29523]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29525]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29524]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29526]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29525]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29527]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29526]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29528]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29528]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29529]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29527]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29530]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29529]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29531]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29530]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29532]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29531]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29533]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29532]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29534]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29533]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29535]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29534]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29536]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29535]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29537]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29536]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29538]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29537]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29539]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29538]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29540]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29539]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29541]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29540]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29542]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29541]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29543]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29542]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29544]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29543]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29545]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29544]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29546]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29545]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29547]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29546]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29548]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29547]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29549]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29548]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29550]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29550]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29551]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29551]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29552]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29552]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29553]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29549]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29553]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29554]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29555]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29554]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29556]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29555]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29557]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29556]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29558]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29557]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29559]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29558]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29560]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29559]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29561]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29560]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29562]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29561]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29563]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29562]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29564]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29563]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29565]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29564]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29566]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29565]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29567]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29566]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29568]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29567]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29569]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29568]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29570]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29569]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29571]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29570]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29572]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29571]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29573]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29572]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29574]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29573]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29575]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29574]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29576]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29576]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29577]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29575]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29578]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29577]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29579]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29579]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29580]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29580]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29581]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29581]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29582]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29578]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29582]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29583]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29584]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29583]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29585]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29585]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29584]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29586]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29587]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29586]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29588]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29587]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29588]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29589]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29590]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29589]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29591]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29590]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29592]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29591]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29592]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29593]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29594]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29593]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29595]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29594]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29596]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29595]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29596]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29597]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29598]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29597]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29599]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29599]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29600]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29598]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29601]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29600]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29602]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29601]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29603]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29602]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29604]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29603]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29605]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29604]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29606]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29605]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29607]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29606]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29608]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29608]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29609]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29609]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29610]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29610]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29611]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29607]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29612]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29611]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29613]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29612]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29614]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29614]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29615]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29613]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29616]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29615]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29617]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29616]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29618]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29617]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29619]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29618]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29620]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29619]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29621]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29621]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29622]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29622]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29623]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29620]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29624]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29623]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29625]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29624]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29626]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29625]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29627]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29626]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29628]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29627]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29629]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29628]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29630]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29629]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29631]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29630]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29632]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29631]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29633]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29632]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29634]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29634]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29635]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29635]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29636]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29636]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29637]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29633]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29638]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29637]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29639]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29638]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29640]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29639]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29640]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29642]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29641]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29642]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29643]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29641]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29644]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29643]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29645]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29644]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29646]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29645]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29647]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29647]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29648]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29646]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29649]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29648]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29650]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29649]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29650]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29651]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29652]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29651]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29653]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29652]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29654]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29653]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29654]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29655]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29656]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29655]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29657]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29656]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29658]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29657]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29658]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29659]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29660]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29659]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29661]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29661]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29662]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29662]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29663]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29663]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29664]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29660]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29665]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29664]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29666]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29665]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29667]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29666]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29668]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29667]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29669]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29669]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29670]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29668]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29671]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29670]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29672]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29671]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29673]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29672]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29674]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29673]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29675]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29674]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29676]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29675]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29676]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29677]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29678]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29677]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29679]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29678]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29680]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29679]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29680]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29681]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29682]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29681]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29683]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29682]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29684]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29683]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29684]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29685]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29686]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29685]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29687]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29686]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29688]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29687]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29689]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29689]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29690]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29690]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29691]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29688]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29692]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29691]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29693]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29693]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29694]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29692]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29695]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29694]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29696]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29695]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29697]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29696]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29698]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29698]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29699]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29697]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29700]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29699]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29700]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29701]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29702]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29701]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29703]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29702]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29704]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29703]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29705]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29704]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29706]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29705]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29707]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29706]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29708]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29707]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29709]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29708]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29710]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29709]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29711]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29710]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29712]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29711]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29712]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29713]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29714]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29713]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29715]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29714]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29716]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29715]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29717]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29717]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29718]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29718]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29719]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29716]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29720]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29719]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29721]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29720]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29722]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29721]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29722]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29723]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29724]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29723]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29725]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29724]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29726]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29725]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29726]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29727]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29728]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29727]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29729]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29728]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29730]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29729]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29730]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29731]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29732]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29731]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29733]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29732]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29734]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29733]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29734]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29735]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29736]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29735]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29737]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29736]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29738]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29737]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29738]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29739]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29740]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29739]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29741]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29741]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29742]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29742]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29743]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29743]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29744]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29740]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29745]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29744]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29746]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29745]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29747]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29746]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29748]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29748]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29749]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29749]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29750]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29750]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29751]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29747]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29752]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29751]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29753]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29752]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29754]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29753]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29755]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29754]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29756]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29756]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29755]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29757]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29758]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29757]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29759]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29758]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29760]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29759]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29761]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29760]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29762]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29761]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29763]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29762]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29764]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29763]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29765]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29764]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29766]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29766]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29767]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29767]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29768]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29765]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29769]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29768]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29770]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29770]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29771]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29769]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29771]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29772]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29773]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29772]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29774]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29773]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29775]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29774]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29776]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29775]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29776]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29777]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29778]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29777]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29779]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29778]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29780]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29780]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29781]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29781]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29782]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29782]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29783]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29783]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29784]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29784]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29785]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29779]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29785]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29786]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29787]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29786]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29788]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29787]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29789]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29788]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29790]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29789]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29790]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29791]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29792]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29791]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29793]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29792]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29794]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29793]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29795]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29794]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29796]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29795]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29797]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29796]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29798]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29797]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29799]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29798]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29800]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29799]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29801]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29800]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29802]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29801]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29803]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29802]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29804]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29803]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29805]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29804]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29806]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29806]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29807]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29805]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29808]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29807]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29809]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29808]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29810]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29809]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29811]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29810]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29812]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29811]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29813]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29813]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29814]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29814]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29815]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29812]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29816]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29815]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29817]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29816]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29818]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29817]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29819]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29818]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29820]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29819]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29820]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29821]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29822]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29821]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29823]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29822]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29824]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29823]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29824]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29825]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29826]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29825]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29827]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29826]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29828]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29827]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29829]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29829]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29830]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29828]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29831]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29830]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29832]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29832]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29833]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29831]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29834]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29834]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29835]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29833]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29836]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29835]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29837]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29836]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29838]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29837]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29839]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29838]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29840]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29839]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29841]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29840]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29842]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29842]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29843]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29843]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29844]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29844]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29845]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29841]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29846]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29845]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29847]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29846]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29848]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29847]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29849]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29848]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29850]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29849]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29851]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29851]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29852]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29850]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29853]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29852]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29854]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29853]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29855]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29854]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29856]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29855]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29857]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29856]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29858]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29857]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29859]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29858]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29860]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29859]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29861]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29860]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29862]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29861]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29863]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29862]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29864]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29863]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29865]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29864]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29866]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29865]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29867]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29866]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29868]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29867]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29869]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29868]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29870]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29870]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29871]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29871]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29872]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29869]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29873]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29872]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29874]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29874]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29875]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29873]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29876]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29875]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29877]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29876]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29878]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29877]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29879]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29878]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29880]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29879]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29880]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29881]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29882]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29881]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29883]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29882]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29884]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29883]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29884]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29885]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29886]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29885]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29887]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29886]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29888]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29887]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29888]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29889]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29890]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29889]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29891]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29890]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29892]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29891]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29892]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29893]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29894]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29893]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29895]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29894]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29896]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29896]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29897]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29897]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29898]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29895]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29899]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29898]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29900]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29900]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29901]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29899]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29902]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29901]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29903]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29902]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29903]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29904]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29905]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29904]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29906]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29905]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29907]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29906]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29908]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29907]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29909]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29908]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29910]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29909]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29911]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29910]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29912]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29911]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29913]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29912]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29914]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29913]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29915]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29914]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29916]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29916]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29917]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29917]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29918]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29918]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29919]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29919]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29920]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29920]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29921]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29921]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29922]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29915]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29922]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29923]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29924]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29923]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29925]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29924]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29926]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29925]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29927]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29926]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29927]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29928]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29929]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29928]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29929]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29930]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29931]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29930]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29932]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29932]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29933]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29931]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29934]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29934]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29935]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29933]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29936]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29935]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29937]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29936]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29938]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29937]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29938]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29939]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29940]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29939]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29941]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29941]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29942]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29942]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29943]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29943]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29944]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29940]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29945]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29944]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29946]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29945]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29947]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29946]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29948]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29947]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29949]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29948]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29950]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29949]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29951]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29950]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29952]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29951]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29953]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29952]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29954]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29953]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29955]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29954]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29956]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29955]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29957]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29957]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29958]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29956]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29959]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29958]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29960]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29959]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29960]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29961]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29962]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29961]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29963]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29963]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29964]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29964]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29965]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29965]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29966]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29962]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29967]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29966]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29968]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29967]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29969]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29968]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29970]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29969]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29971]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29970]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29972]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29972]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29973]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29973]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29974]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29974]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29975]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29971]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29976]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29975]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29977]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29977]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 29978]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29976]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29979]]} + {:process 0 :type :fail :f :txn :value [[:append 4 29978]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29980]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29979]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 29981]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29980]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 29982]]} + {:process 1 :type :fail :f :txn :value [[:append 4 29981]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29983]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29983]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 1 29982]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29984]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 29985]]} + {:process 1 :type :fail :f :txn :value [[:append 5 29985]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29986]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29984]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29986]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 29987]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 29988]]} + {:process 0 :type :fail :f :txn :value [[:append 6 29987]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29989]]} + {:process 1 :type :fail :f :txn :value [[:append 2 29988]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 29990]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29989]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 29991]]} + {:process 1 :type :fail :f :txn :value [[:append 1 29990]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 29992]]} + {:process 0 :type :fail :f :txn :value [[:append 3 29991]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 29993]]} + {:process 1 :type :fail :f :txn :value [[:append 3 29992]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 29994]]} + {:process 0 :type :fail :f :txn :value [[:append 2 29993]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 29994]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 29995]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 29996]]} + {:process 0 :type :fail :f :txn :value [[:append 0 29995]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 29997]]} + {:process 1 :type :fail :f :txn :value [[:append 0 29996]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 29998]]} + {:process 0 :type :fail :f :txn :value [[:append 7 29997]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 29999]]} + {:process 0 :type :fail :f :txn :value [[:append 5 29999]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30000]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30000]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30001]]} + {:process 1 :type :fail :f :txn :value [[:append 7 29998]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30002]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30002]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30003]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30003]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30004]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30001]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30005]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30004]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30006]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30005]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30007]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30006]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30008]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30007]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30009]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30008]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30010]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30009]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30011]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30010]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30012]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30011]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30013]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30012]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30014]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30013]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30015]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30014]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30016]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30015]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30017]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30016]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30018]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30017]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30019]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30018]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30020]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30019]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30021]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30020]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30022]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30021]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30023]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30022]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30024]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30023]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30025]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30025]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30026]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30026]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30027]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30027]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30028]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30024]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30029]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30028]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30030]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30029]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30031]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30030]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30032]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30031]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30033]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30032]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30034]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30033]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30035]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30034]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30036]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30035]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30037]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30036]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30038]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30037]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30039]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30038]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30040]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30039]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30041]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30040]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30042]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30041]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30043]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30042]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30044]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30043]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30045]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30044]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30046]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30045]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30047]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30046]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30048]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30047]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30049]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30048]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30050]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30049]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30051]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30050]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30052]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30051]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30053]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30052]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30054]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30054]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30055]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30055]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30056]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30056]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30057]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30053]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30057]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30058]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30059]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30058]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30060]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30059]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30061]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30060]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30062]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30061]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30063]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30062]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30064]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30063]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30064]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30065]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30066]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30065]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30067]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30066]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30068]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30067]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30069]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30068]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30070]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30069]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30071]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30070]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30072]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30071]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30073]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30072]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30074]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30073]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30075]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30075]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30076]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30074]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30077]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30076]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30078]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30077]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30079]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30078]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30080]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30079]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30081]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30080]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30082]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30081]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30083]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30082]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30084]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30084]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30085]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30085]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30086]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30086]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30087]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30083]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30088]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30087]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30089]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30088]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30090]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30089]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30091]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30090]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30092]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30091]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30093]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30092]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30094]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30093]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30095]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30095]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30096]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30094]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30097]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30096]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30097]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30098]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30099]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30098]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30099]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30100]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30101]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30100]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30102]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30101]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30103]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30102]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30104]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30103]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30105]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30104]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30106]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30105]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30107]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30106]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30108]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30107]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30109]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30108]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30110]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30109]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30111]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30110]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30112]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30111]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30113]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30112]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30114]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30114]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30115]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30115]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30116]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30116]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30117]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30113]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30117]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30118]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30119]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30118]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30120]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30119]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30121]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30120]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30122]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30121]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30123]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30122]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30124]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30123]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30124]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30125]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30126]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30125]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30127]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30126]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30128]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30127]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30128]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30129]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30130]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30129]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30131]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30130]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30132]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30131]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30132]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30133]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30134]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30133]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30135]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30134]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30136]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30135]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30136]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30137]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30138]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30137]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30139]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30138]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30140]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30139]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30140]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30141]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30142]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30141]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30143]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30142]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30144]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30143]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30144]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30145]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30146]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30145]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30147]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30146]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30148]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30147]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30148]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30149]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30150]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30149]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30151]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30150]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30152]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30151]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30152]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30154]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30153]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30154]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30155]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30153]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30156]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30155]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30157]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30156]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30158]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30157]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30159]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30158]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30160]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30159]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30161]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30160]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30162]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30161]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30163]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30162]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30164]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30163]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30165]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30164]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30166]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30166]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30167]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30167]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30168]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30165]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30169]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30168]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30170]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30169]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30171]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30170]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30172]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30171]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30173]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30172]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30174]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30173]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30175]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30174]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30176]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30175]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30177]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30176]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30178]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30177]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30179]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30178]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30179]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30180]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30181]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30180]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30182]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30181]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30183]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30182]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30184]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30183]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30185]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30184]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30186]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30185]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30187]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30186]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30188]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30187]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30189]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30188]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30190]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30189]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30191]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30190]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30192]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30191]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30193]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30192]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30194]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30193]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30195]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30194]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30196]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30195]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30197]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30196]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30198]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30197]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30199]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30198]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30200]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30199]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30201]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30200]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30202]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30201]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30203]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30202]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30203]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30204]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30205]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30204]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30206]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30205]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30207]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30206]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30208]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30207]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30209]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30208]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30210]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30209]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30211]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30210]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30211]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30212]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30213]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30212]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30214]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30213]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30215]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30214]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30216]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30215]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30216]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30217]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30218]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30217]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30219]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30219]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30220]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30218]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30221]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30220]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30222]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30221]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30223]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30222]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30224]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30223]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30225]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30224]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30226]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30225]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30227]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30226]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30228]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30227]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30229]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30228]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30230]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30229]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30231]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30230]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30232]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30231]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30233]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30232]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30234]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30233]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30235]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30234]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30236]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30235]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30237]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30236]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30238]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30237]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30239]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30238]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30240]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30239]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30241]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30240]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30242]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30241]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30243]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30243]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30244]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30242]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30245]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30245]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30246]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30246]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30247]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30244]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30248]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30247]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30249]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30248]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30250]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30249]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30250]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30251]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30252]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30251]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30253]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30252]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30254]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30253]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30254]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30255]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30256]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30255]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30257]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30256]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30258]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30257]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30259]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30258]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30260]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30259]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30261]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30260]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30262]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30261]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30263]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30262]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30264]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30263]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30265]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30264]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30266]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30265]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30266]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30268]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30267]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30268]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30269]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30267]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30270]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30270]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30271]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30269]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30271]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30272]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30273]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30272]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30273]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30274]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30275]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30274]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30276]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30275]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30277]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30276]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30278]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30277]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30279]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30278]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30280]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30279]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30281]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30280]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30282]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30281]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30283]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30282]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30284]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30283]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30285]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30284]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30286]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30285]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30287]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30286]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30288]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30287]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30289]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30288]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30290]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30289]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30291]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30290]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30292]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30291]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30293]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30292]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30294]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30293]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30295]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30295]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30296]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30294]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30297]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30297]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30298]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30298]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30299]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30299]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30300]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30296]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30301]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30300]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30302]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30301]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30303]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30302]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30304]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30303]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30305]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30304]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30306]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30305]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30307]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30306]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30308]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30307]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30309]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30308]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30310]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30309]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30311]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30310]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30312]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30311]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30313]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30312]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30314]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30313]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30315]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30314]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30316]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30315]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30317]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30316]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30318]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30317]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30319]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30318]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30320]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30320]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30321]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30319]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30322]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30322]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30323]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30321]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30324]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30323]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30324]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30326]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30325]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30326]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30327]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30327]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30328]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30328]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30329]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30329]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30330]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30325]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30330]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30331]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30332]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30331]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30333]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30332]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30334]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30333]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30335]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30334]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30336]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30335]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30337]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30336]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30338]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30337]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30339]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30338]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30340]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30339]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30341]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30340]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30342]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30342]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30343]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30341]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30344]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30343]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30345]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30344]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30346]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30345]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30346]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30347]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30348]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30347]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30349]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30348]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30350]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30349]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30350]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30351]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30352]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30351]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30353]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30352]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30354]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30353]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30355]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30354]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30356]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30355]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30357]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30357]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30358]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30358]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30359]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30359]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30360]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30360]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30361]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30361]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30362]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30356]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30363]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30362]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30364]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30363]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30365]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30364]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30366]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30365]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30367]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30366]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30368]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30367]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30369]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30368]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30370]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30369]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30371]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30370]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30372]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30371]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30373]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30372]]} + {:process 0 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30374]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30373]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30375]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30374]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30376]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30375]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30377]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30376]]} + {:process 0 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30378]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30377]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30379]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30378]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30380]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30379]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30381]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30381]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30382]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30380]]} + {:process 0 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 0 30383]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30382]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30384]]} + {:process 0 :type :fail :f :txn :value [[:append 0 30383]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30385]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30384]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30386]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30385]]} + {:process 0 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 5 30387]]} + {:process 0 :type :fail :f :txn :value [[:append 5 30387]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30388]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30386]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30389]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30388]]} + {:process 0 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 2 30390]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30389]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30391]]} + {:process 0 :type :fail :f :txn :value [[:append 2 30390]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30392]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30391]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30393]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30392]]} + {:process 0 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 7 30394]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30393]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30395]]} + {:process 0 :type :fail :f :txn :value [[:append 7 30394]]} + {:process 0 :type :invoke :f :txn :value [[:append 6 30396]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30395]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30397]]} + {:process 0 :type :fail :f :txn :value [[:append 6 30396]]} + {:process 0 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 4 30398]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30397]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30399]]} + {:process 0 :type :fail :f :txn :value [[:append 4 30398]]} + {:process 0 :type :invoke :f :txn :value [[:append 3 30400]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30399]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30401]]} + {:process 0 :type :fail :f :txn :value [[:append 3 30400]]} + {:process 0 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 0 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 0 :type :invoke :f :txn :value [[:append 1 30402]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30401]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30403]]} + {:process 0 :type :fail :f :txn :value [[:append 1 30402]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30403]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30404]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30404]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30405]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30405]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30406]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30406]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30407]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30407]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30408]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30408]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30409]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30409]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30410]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30410]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30411]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30411]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30412]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30412]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30413]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30413]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30414]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30414]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30415]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30415]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30416]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30416]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30417]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30417]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30418]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30418]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30419]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30419]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30420]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30420]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30421]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30421]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30422]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30422]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30423]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30423]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30424]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30424]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30425]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30425]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30426]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30426]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30427]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30427]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30428]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30428]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30429]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30429]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30430]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30430]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30431]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30431]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30432]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30432]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30433]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30433]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30434]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30434]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30435]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30435]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30436]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30436]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30437]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30437]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30438]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30438]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30439]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30439]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30440]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30440]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30441]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30441]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30442]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30442]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30443]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30443]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30444]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30444]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30445]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30445]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30446]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30446]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30447]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30447]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30448]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30448]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30449]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30449]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30450]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30450]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30451]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30451]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30452]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30452]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30453]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30453]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30454]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30454]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30455]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30455]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30456]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30456]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30457]]} + {:process 5 :type :fail :f :txn :value [[:append 4 1659]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30457]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30458]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30459]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30458]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30460]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30459]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30461]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30460]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30461]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30462]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30463]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30462]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30463]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30465]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30465]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30466]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30464]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30466]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30467]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30464]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30467]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30468]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30469]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30468]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30470]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30469]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30471]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30470]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30472]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30471]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30473]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30472]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30474]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30473]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30475]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30474]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30476]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30475]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30476]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30477]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30477]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30478]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30478]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30479]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30479]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30480]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30480]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30481]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30481]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30482]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30482]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30483]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30483]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30484]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30484]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30485]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30486]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30485]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30487]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30486]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30488]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30487]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30489]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30488]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30489]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30490]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30491]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30490]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30492]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30491]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30493]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30492]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30493]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30495]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30495]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30496]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30494]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30496]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30497]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30494]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30498]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30497]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30499]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30498]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30499]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30500]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30501]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30500]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30502]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30501]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30503]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30502]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30504]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30504]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30505]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30505]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30506]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30503]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30507]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30506]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30508]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30507]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30509]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30508]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30509]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30510]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30511]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30510]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30512]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30511]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30513]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30512]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30513]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30514]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30515]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30514]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30516]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30515]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30517]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30516]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30517]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30518]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30519]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30518]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30520]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30519]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30521]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30520]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30521]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30522]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30523]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30522]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30524]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30523]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30525]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30524]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30525]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30526]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30527]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30526]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30528]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30527]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30529]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30528]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30530]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30530]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30531]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30531]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30532]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30529]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30533]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30532]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30534]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30533]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30535]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30534]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30535]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30536]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30537]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30536]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30538]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30537]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30539]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30538]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30539]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30540]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30541]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30540]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30542]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30541]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30543]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30542]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30544]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30543]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30545]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30544]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30546]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30545]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30547]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30546]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30547]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30548]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30549]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30548]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30550]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30550]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30551]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30549]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30551]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30552]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30553]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30552]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30553]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30554]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30555]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30554]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30556]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30555]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30557]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30556]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30558]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30557]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30559]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30558]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30560]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30560]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30561]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30561]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30562]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30562]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30563]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30559]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30564]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30563]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30565]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30564]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30566]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30565]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30567]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30566]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30568]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30567]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30569]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30568]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30570]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30569]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30571]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30570]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30572]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30571]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30573]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30572]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30574]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30573]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30575]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30574]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30576]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30576]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30577]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30575]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30578]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30577]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30579]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30578]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30579]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30580]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30581]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30580]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30582]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30581]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30583]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30582]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30583]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30584]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30585]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30584]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30586]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30585]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30587]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30586]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30588]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30588]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30589]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30589]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30590]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30587]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30590]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30591]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30592]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30591]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30593]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30592]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30594]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30593]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30595]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30594]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30596]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30595]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30597]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30596]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30597]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30598]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30599]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30598]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30600]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30599]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30601]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30600]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30602]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30602]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30603]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30601]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30604]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30604]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30605]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30603]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30606]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30606]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30607]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30605]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30608]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30607]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30608]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30609]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30610]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30609]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30611]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30610]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30612]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30611]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30613]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30612]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30614]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30613]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30615]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30614]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30616]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30616]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30617]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30617]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30618]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30618]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30619]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30615]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30620]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30619]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30621]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30620]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30622]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30621]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30623]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30622]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30624]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30623]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30625]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30625]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30626]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30624]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30627]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30626]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30628]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30627]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30629]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30628]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30629]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30630]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30631]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30630]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30632]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30631]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30633]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30632]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30633]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30634]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30635]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30634]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30636]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30635]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30637]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30636]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30637]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30638]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30639]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30638]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30640]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30639]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30641]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30640]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30641]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30642]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30643]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30642]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30644]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30643]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30645]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30644]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30646]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30646]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30647]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30647]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30648]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30648]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30649]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30645]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30650]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30650]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30651]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30649]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30652]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30652]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30653]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30651]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30653]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30654]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30655]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30654]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30656]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30655]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30657]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30657]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30658]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30656]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30659]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30658]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30660]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30659]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30661]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30660]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30662]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30661]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30663]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30662]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30664]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30663]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30665]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30665]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30664]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30666]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30667]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30666]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30668]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30667]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30669]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30668]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30670]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30669]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30671]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30670]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30672]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30671]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30673]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30673]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30674]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30674]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30675]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30672]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30675]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30676]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30677]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30676]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30678]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30677]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30679]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30678]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30680]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30679]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30681]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30680]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30682]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30681]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30683]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30682]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30684]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30683]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30684]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30685]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30686]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30685]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30687]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30686]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30688]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30687]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30689]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30688]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30690]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30689]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30691]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30690]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30692]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30691]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30693]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30692]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30694]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30693]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30695]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30694]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30696]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30695]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30697]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30696]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30698]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30697]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30699]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30699]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30700]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30700]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30701]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30698]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30702]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30701]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30703]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30703]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30704]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30704]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30702]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30705]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30706]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30705]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30707]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30706]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30708]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30707]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30709]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30708]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30710]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30709]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30711]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30710]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30712]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30711]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30713]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30712]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30714]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30713]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30715]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30714]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30716]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30715]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30717]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30716]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30718]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30717]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30719]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30718]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30720]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30719]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30721]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30721]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30722]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30720]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30722]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30723]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30724]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30723]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30725]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30724]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30726]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30725]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30727]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30726]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30727]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30728]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30729]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30728]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30730]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30729]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30731]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30730]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30732]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30732]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30733]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30733]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30734]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30731]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30735]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30734]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30736]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30735]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30737]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30736]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30737]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30738]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30739]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30738]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30740]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30739]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30741]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30740]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30742]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30741]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30743]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30742]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30744]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30744]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30745]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30743]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30746]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30745]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30747]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30746]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30748]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30747]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30749]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30748]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30750]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30749]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30751]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30750]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30752]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30751]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30753]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30752]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30754]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30753]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30755]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30754]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30756]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30755]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30757]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30756]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30758]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30757]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30759]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30758]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30760]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30759]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30761]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30761]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30762]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30762]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30763]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30763]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30764]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30760]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30765]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30765]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30766]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30764]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30766]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30767]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30768]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30768]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30769]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30767]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30770]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30769]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30771]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30770]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30771]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30772]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30773]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30772]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30774]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30773]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30775]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30774]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30775]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30776]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30777]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30776]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30778]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30777]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30779]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30779]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30778]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30780]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30781]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30780]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30782]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30781]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30783]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30782]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30784]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30783]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30785]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30784]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30786]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30785]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30787]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30787]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30788]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30788]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30789]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30786]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30789]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30790]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30791]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30790]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30792]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30792]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30793]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30791]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30794]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30793]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30795]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30794]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30795]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30796]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30797]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30796]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30798]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30797]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30799]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30798]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30799]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30800]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30801]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30800]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30802]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30801]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30803]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30802]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30803]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30804]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30805]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30804]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30806]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30805]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30807]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30806]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30807]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30808]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30809]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30808]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30810]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30809]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30811]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30810]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30812]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30812]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30813]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30813]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30814]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30811]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30815]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30814]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30816]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30816]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30817]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30815]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30818]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30818]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30819]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30817]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30820]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30819]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30821]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30820]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30821]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30822]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30823]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30822]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30824]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30823]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30825]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30824]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30826]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30825]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30827]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30826]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30828]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30827]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30829]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30828]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30829]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30830]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30831]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30830]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30832]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30831]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30833]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30832]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30833]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30834]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30835]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30834]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30835]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30836]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30837]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30836]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30838]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30837]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30839]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30839]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30840]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30840]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30841]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30841]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30842]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30838]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30843]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30843]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30844]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30842]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30845]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30844]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30846]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30845]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30847]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30846]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30848]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30847]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30849]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30848]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30850]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30849]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30851]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30850]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30852]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30851]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30853]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30852]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30854]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30853]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30855]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30854]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30856]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30855]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30857]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30856]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30858]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30857]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30859]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30858]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30860]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30859]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30860]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30861]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30862]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30861]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30863]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30862]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30864]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30863]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30865]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30864]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30866]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30866]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30867]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30867]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30868]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30865]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30869]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30868]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30870]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30869]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30871]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30870]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30872]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30871]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30873]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30872]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30874]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30873]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30875]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30874]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30875]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30876]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30877]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30876]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30878]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30877]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30879]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30878]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30879]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30880]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30881]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30880]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30882]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30881]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30883]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30882]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30883]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30884]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30885]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30884]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30886]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30885]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30887]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30886]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30887]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30888]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30889]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30888]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30890]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30889]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30891]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30890]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30892]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30891]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30892]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30893]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30894]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30893]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30895]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30895]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30896]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30896]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30897]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30894]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30898]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30897]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30899]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30898]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30900]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30899]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30901]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30900]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30902]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30901]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30903]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30902]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30904]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30903]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30904]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30905]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30906]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30905]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30907]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30906]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30908]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30907]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30909]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30908]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30910]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30909]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30911]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30910]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30912]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30911]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30913]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30912]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30914]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30913]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30915]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30914]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30916]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30915]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30917]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30917]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30918]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30916]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30919]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30919]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30920]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30918]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30921]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30920]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30922]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30921]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30923]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30923]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30924]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30924]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30925]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30925]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30926]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30922]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30927]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30926]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30928]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30927]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30929]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30928]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30929]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30930]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30931]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30930]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30932]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30931]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30933]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30932]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30933]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30934]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30935]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30934]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30936]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30935]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30937]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30936]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30938]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30937]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30939]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30938]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30940]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30940]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30941]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30939]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30942]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30941]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30943]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30942]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30944]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30943]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30945]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30944]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30946]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30945]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30947]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30946]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30948]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30947]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30949]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30949]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30948]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30950]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30951]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30950]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30952]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30952]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30953]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30953]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30954]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30954]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30955]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30951]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30956]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30955]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30957]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30956]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30958]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30957]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30959]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30958]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30960]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30959]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30961]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30960]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30962]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30962]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30963]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30961]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30964]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30963]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30965]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30964]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30966]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30965]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30967]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30966]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30968]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30967]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30969]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30968]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30969]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30970]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30971]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30970]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30972]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30971]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30973]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30972]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30973]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30974]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 30975]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30974]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30976]]} + {:process 1 :type :fail :f :txn :value [[:append 7 30975]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30977]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30976]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30977]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30978]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 30979]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30978]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30980]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30980]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30981]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30981]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30982]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30982]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 30983]]} + {:process 5 :type :fail :f :txn :value [[:append 6 30983]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30984]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30984]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 30985]]} + {:process 1 :type :fail :f :txn :value [[:append 4 30979]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30986]]} + {:process 5 :type :fail :f :txn :value [[:append 5 30985]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30987]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30986]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 30988]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30987]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 30989]]} + {:process 1 :type :fail :f :txn :value [[:append 5 30988]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 30990]]} + {:process 5 :type :fail :f :txn :value [[:append 0 30989]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 30991]]} + {:process 1 :type :fail :f :txn :value [[:append 0 30990]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 30992]]} + {:process 5 :type :fail :f :txn :value [[:append 1 30991]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 30993]]} + {:process 1 :type :fail :f :txn :value [[:append 2 30992]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 30994]]} + {:process 5 :type :fail :f :txn :value [[:append 7 30993]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 30995]]} + {:process 1 :type :fail :f :txn :value [[:append 1 30994]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 30996]]} + {:process 5 :type :fail :f :txn :value [[:append 4 30995]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 30997]]} + {:process 1 :type :fail :f :txn :value [[:append 3 30996]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 30998]]} + {:process 5 :type :fail :f :txn :value [[:append 2 30997]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 30999]]} + {:process 1 :type :fail :f :txn :value [[:append 6 30998]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31000]]} + {:process 5 :type :fail :f :txn :value [[:append 3 30999]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31001]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31000]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31002]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31001]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31003]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31002]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31004]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31003]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31005]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31004]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31006]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31005]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31006]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31007]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31008]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31007]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31009]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31008]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31010]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31010]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31011]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31011]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31012]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31009]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31012]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31013]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31014]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31013]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31015]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31014]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31016]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31015]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31017]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31016]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31018]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31017]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31019]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31018]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31019]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31020]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31021]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31020]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31022]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31021]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31023]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31022]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31023]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31024]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31025]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31024]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31026]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31025]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31027]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31026]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31027]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31028]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31029]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31028]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31030]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31030]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31031]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31029]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31032]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31032]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31033]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31033]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31034]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31031]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31035]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31034]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31036]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31035]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31037]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31037]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31038]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31038]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31039]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31039]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31040]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31036]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31041]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31040]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31042]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31041]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31043]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31042]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31044]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31043]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31045]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31044]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31046]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31045]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31047]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31046]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31048]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31047]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31049]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31048]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31049]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31050]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31051]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31050]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31052]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31051]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31053]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31052]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31054]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31053]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31055]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31054]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31056]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31056]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31057]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31055]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31058]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31057]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31059]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31058]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31060]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31059]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31061]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31060]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31062]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31061]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31063]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31062]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31064]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31063]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31064]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31065]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31066]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31066]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31067]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31067]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31068]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31068]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31069]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31065]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31069]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31070]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31071]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31070]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31072]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31071]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31073]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31072]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31074]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31073]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31075]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31074]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31076]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31075]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31077]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31076]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31078]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31077]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31079]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31078]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31080]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31080]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31081]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31079]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31082]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31081]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31083]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31082]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31083]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31084]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31085]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31084]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31086]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31085]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31087]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31086]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31087]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31088]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31089]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31088]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31090]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31089]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31091]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31090]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31092]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31092]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31093]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31093]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31094]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31091]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31095]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31094]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31096]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31095]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31097]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31096]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31097]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31098]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31099]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31098]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31100]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31099]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31101]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31100]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31101]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31102]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31103]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31102]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31104]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31104]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31105]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31103]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31106]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31105]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31107]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31106]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31108]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31107]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31109]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31108]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31110]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31109]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31111]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31110]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31112]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31111]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31113]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31112]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31114]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31113]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31115]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31114]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31116]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31115]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31117]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31116]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31118]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31117]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31119]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31118]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31120]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31119]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31121]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31121]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31122]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31122]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31123]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31120]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31124]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31123]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31125]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31124]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31126]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31125]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31127]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31127]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31128]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31126]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31129]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31128]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31130]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31129]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31131]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31130]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31132]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31131]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31133]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31132]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31133]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31134]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31135]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31134]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31136]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31135]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31137]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31136]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31137]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31138]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31139]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31138]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31140]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31139]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31141]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31140]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31141]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31142]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31143]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31142]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31144]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31143]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31145]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31144]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31145]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31146]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31147]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31146]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31148]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31147]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31149]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31148]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31150]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31150]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31151]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31151]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31152]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31149]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31152]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31153]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31154]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31153]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31154]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31155]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31156]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31155]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31157]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31156]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31158]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31157]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31159]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31158]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31160]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31159]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31161]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31160]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31162]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31161]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31163]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31162]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31164]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31163]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31165]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31164]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31166]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31165]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31167]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31166]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31168]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31167]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31169]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31168]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31170]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31169]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31171]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31170]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31172]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31171]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31173]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31172]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31174]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31173]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31175]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31174]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31176]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31176]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31177]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31175]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31178]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31178]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31179]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31179]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31180]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31177]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31181]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31180]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31182]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31181]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31183]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31182]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31184]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31183]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31185]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31184]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31186]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31185]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31187]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31186]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31188]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31187]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31189]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31188]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31189]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31190]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31191]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31190]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31192]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31191]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31193]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31192]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31193]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31194]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31195]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31194]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31196]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31195]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31197]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31196]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31197]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31198]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31199]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31198]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31200]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31200]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31201]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31199]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31202]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31201]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31203]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31202]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31204]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31203]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31204]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31206]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31205]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31205]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31207]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31207]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31208]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31208]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31209]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31209]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31210]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31210]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31211]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31206]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31212]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31211]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31213]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31212]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31214]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31213]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31215]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31214]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31216]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31215]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31217]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31216]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31218]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31217]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31219]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31218]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31220]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31219]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31221]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31221]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31222]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31220]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31223]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31222]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31224]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31223]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31225]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31224]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31226]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31225]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31227]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31226]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31228]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31227]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31229]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31228]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31230]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31229]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31231]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31230]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31232]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31231]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31233]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31232]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31234]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31233]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31234]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31235]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31236]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31236]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31237]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31237]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31238]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31238]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31239]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31239]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31240]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31235]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31241]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31240]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31242]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31242]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31243]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31241]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31244]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31243]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31245]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31244]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31246]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31245]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31247]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31246]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31248]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31247]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31249]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31248]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31250]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31249]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31251]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31250]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31252]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31251]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31253]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31252]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31254]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31253]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31255]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31254]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31256]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31255]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31257]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31256]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31258]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31257]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31259]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31258]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31260]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31259]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31261]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31260]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31262]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31261]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31263]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31262]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31264]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31263]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31265]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31264]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31266]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31265]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31267]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31267]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31268]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31266]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31269]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31268]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31270]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31269]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31271]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31270]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31272]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31271]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31273]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31272]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31273]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31274]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31275]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31274]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31276]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31275]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31277]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31276]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31278]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31277]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31279]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31278]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31280]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31279]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31281]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31280]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31281]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31282]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31283]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31282]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31284]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31283]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31285]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31284]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31286]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31285]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31287]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31286]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31288]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31287]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31289]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31289]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31290]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31288]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31291]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31290]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31292]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31291]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31293]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31293]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31294]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31294]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31295]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31295]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31296]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31296]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31297]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31292]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31297]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31298]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31299]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31298]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31300]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31299]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31301]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31300]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31301]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31302]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31303]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31302]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31304]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31303]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31305]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31304]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31306]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31305]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31307]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31306]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31308]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31307]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31309]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31308]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31310]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31309]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31311]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31310]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31312]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31311]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31313]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31312]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31314]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31313]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31315]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31314]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31316]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31316]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31317]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31317]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31318]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31315]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31319]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31318]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31320]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31319]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31321]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31321]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31322]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31322]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31323]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31320]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31324]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31323]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31325]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31324]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31326]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31325]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31327]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31326]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31328]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31327]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31329]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31328]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31330]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31329]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31331]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31330]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31332]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31331]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31333]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31332]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31334]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31333]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31335]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31334]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31336]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31335]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31337]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31336]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31338]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31337]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31339]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31338]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31340]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31339]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31341]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31341]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31342]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31340]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31343]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31342]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31344]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31343]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31345]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31344]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31345]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31346]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31347]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31347]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31348]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31346]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31349]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31349]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31350]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31350]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31351]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31351]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31348]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31352]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31353]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31352]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31354]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31353]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31355]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31354]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31355]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31356]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31357]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31356]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31358]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31357]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31359]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31358]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31359]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31360]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31361]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31360]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31362]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31362]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31363]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31363]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31364]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31364]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31365]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31365]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31366]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31366]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31367]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31367]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31368]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31368]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31369]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31369]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31370]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31361]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31371]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31370]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31372]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31371]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31373]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31372]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31374]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31374]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31375]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31373]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31376]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31375]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31377]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31376]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31378]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31377]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31379]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31378]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31380]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31379]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31381]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31381]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31382]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31380]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31383]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31382]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31384]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31383]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31385]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31384]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31386]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31386]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31387]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31387]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31388]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31388]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31389]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31389]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31390]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31385]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31391]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31390]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31392]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31391]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31393]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31392]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31394]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31393]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31395]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31394]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31396]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31395]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31397]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31396]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31398]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31397]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31399]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31398]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31400]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31400]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31401]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31399]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31402]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31401]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31403]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31402]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31404]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31403]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31405]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31404]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31405]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31406]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31407]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31406]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31407]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31408]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31409]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31408]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31410]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31409]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31411]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31410]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31412]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31411]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31413]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31412]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31414]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31413]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31415]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31415]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31416]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31414]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31417]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31417]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31418]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31418]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31419]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31419]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31420]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31420]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31421]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31421]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31422]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31422]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31423]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31423]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31424]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31424]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31425]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31425]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31426]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31426]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31427]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31427]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31428]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31428]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31429]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31416]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31430]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31429]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31431]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31431]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31432]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31430]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31433]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31432]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31434]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31433]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31435]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31434]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31436]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31435]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31437]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31436]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31438]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31438]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31439]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31439]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31440]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31440]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31441]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31441]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31442]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31442]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31443]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31437]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31444]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31443]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31445]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31445]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31446]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31444]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31446]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31447]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31448]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31447]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31449]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31448]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31450]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31449]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31451]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31450]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31451]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31452]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31453]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31452]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31454]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31453]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31455]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31454]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31456]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31455]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31457]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31456]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31458]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31458]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31459]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31457]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31460]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31459]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31461]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31460]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31462]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31462]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31463]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31461]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31464]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31463]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31465]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31464]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31466]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31465]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31467]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31466]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31467]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31468]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31469]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31468]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31470]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31469]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31471]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31470]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31471]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31472]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31473]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31472]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31474]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31473]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31475]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31474]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31475]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31476]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31477]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31476]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31478]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31477]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31479]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31478]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31479]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31480]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31481]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31480]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31482]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31481]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31483]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31482]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31484]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31483]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31485]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31485]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31486]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31484]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31487]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31486]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31488]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31487]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31489]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31488]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31490]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31490]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31491]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31491]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31492]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31492]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31493]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31493]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31494]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31489]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31495]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31494]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31496]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31495]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31496]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31497]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31498]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31498]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31499]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31497]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31500]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31499]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31501]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31500]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31501]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31502]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31503]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31502]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31504]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31504]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31505]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31503]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31506]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31505]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31507]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31506]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31508]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31507]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31509]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31508]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31510]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31509]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31511]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31510]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31512]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31511]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31513]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31512]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31514]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31513]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31515]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31514]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31516]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31515]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31517]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31516]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31518]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31518]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31517]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31519]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31520]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31519]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31521]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31521]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31522]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31522]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31523]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31523]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31524]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31520]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31524]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31525]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31526]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31525]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31527]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31527]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31528]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31526]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31529]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31528]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31530]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31529]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31531]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31530]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31532]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31531]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31533]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31532]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31534]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31533]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31535]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31534]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31536]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31535]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31537]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31536]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31538]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31537]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31539]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31538]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31540]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31539]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31541]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31540]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31542]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31541]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31543]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31542]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31544]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31543]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31545]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31544]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31546]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31545]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31547]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31546]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31548]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31547]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31549]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31548]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31550]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31550]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31551]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31549]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31551]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31552]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31553]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31552]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31554]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31553]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31555]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31554]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31555]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31556]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31557]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31556]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31558]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31557]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31559]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31558]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31559]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31560]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31561]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31560]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31562]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31561]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31563]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31562]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31563]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31564]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31565]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31564]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31566]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31565]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31567]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31566]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31567]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31568]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31569]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31568]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31570]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31569]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31571]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31570]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31571]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31572]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31573]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31572]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31574]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31573]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31575]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31574]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31575]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31577]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31576]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31577]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31578]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31578]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31579]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31579]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31580]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31576]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31581]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31580]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31582]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31581]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31582]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31583]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31584]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31583]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31585]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31584]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31586]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31585]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31587]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31586]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31588]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31587]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31589]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31588]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31590]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31589]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31591]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31590]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31592]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31591]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31593]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31592]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31594]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31593]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31595]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31594]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31596]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31595]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31597]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31596]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31598]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31597]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31599]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31598]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31600]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31599]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31601]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31601]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31602]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31600]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31603]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31602]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31604]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31603]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31605]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31605]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31606]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31606]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31607]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31604]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31608]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31607]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31609]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31608]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31610]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31609]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31611]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31610]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31612]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31611]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31613]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31612]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31614]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31613]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31615]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31614]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31616]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31615]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31617]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31616]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31618]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31617]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31619]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31618]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31620]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31619]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31621]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31620]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31622]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31621]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31623]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31622]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31624]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31623]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31625]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31624]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31626]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31626]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31627]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31625]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31628]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31627]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31629]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31628]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31630]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31629]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31630]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31631]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31632]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31631]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31633]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31633]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31634]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31634]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31635]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31635]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31636]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31636]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31637]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31637]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31638]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31638]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31639]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31639]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31640]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31640]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31641]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31641]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31642]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31642]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31643]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31643]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31644]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31632]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31645]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31645]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31646]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31644]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31647]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31646]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31648]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31647]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31649]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31648]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31649]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31650]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31651]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31650]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31652]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31651]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31653]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31652]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31653]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31654]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31655]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31654]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31656]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31655]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31657]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31656]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31657]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31658]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31659]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31658]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31660]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31659]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31661]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31660]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31661]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31662]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31663]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31662]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31664]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31663]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31665]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31664]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31665]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31666]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31667]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31666]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31668]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31667]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31669]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31669]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31670]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31668]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31670]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31671]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31672]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31671]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31672]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31673]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31674]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31673]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31675]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31674]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31676]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31675]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31677]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31676]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31678]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31677]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31679]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31678]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31679]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31680]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31681]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31680]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31682]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31681]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31683]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31682]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31683]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31684]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31685]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31684]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31686]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31685]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31687]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31686]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31687]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31688]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31689]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31688]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31689]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31690]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31691]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31690]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31692]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31691]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31693]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31692]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31694]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31694]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31693]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31695]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31696]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31695]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31697]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31697]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31698]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31698]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31699]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31699]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31700]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31696]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31701]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31700]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31702]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31701]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31703]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31702]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31704]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31703]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31705]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31704]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31706]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31705]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31707]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31706]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31708]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31707]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31709]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31708]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31710]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31709]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31711]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31710]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31712]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31711]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31713]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31712]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31714]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31713]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31715]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31715]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31716]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31714]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31717]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31716]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31718]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31717]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31719]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31718]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31719]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31720]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31721]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31720]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31722]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31721]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31723]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31722]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31723]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31724]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31725]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31725]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31726]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31726]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31727]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31727]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31728]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31724]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31729]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31728]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31729]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31730]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31731]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31730]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31732]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31731]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31733]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31732]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31734]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31733]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31735]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31734]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31736]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31735]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31737]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31736]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31738]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31737]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31739]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31738]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31740]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31740]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31741]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31739]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31742]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31741]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31743]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31742]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31744]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31743]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31745]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31744]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31746]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31745]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31746]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31747]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31748]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31747]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31749]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31748]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31750]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31749]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31751]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31750]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31751]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31752]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31753]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31752]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31754]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31753]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31755]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31755]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31756]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31756]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31757]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31757]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31754]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31758]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31759]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31758]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31760]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31759]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31761]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31761]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31762]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31760]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31763]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31762]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31764]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31763]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31765]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31764]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31765]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31766]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31767]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31766]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31768]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31767]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31769]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31768]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31769]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31770]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31771]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31770]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31772]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31771]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31773]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31772]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31773]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31774]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31775]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31774]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31776]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31775]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31777]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31776]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31777]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31778]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31779]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31778]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31780]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31779]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31781]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31780]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31781]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31782]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31783]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31783]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31784]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31784]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31785]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31785]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31786]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31786]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31787]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31782]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31788]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31787]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31789]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31788]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31789]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31790]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31791]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31790]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31792]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31791]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31793]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31792]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31793]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31794]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31795]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31794]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31796]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31795]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31797]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31796]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31797]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31798]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31799]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31798]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31800]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31799]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31801]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31800]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31801]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31802]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31803]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31802]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31803]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31804]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31805]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31805]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31804]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31806]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31807]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31806]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31808]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31807]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31809]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31808]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31810]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31809]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31811]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31810]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31812]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31812]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31813]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31811]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31814]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31813]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31815]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31815]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31816]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31816]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31817]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31817]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31818]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31814]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31818]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31819]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31820]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31819]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31821]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31820]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31822]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31821]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31823]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31822]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31824]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31823]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31825]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31824]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31826]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31825]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31827]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31826]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31828]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31827]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31829]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31828]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31830]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31829]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31831]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31830]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31832]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31832]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31833]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31831]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31834]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31833]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31835]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31834]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31836]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31836]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31837]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31835]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31838]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31837]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31839]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31838]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31840]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31839]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31841]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31840]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31842]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31841]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31843]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31843]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31844]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31844]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31845]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31845]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31846]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31842]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31847]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31846]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31848]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31847]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31849]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31848]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31849]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31850]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31851]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31850]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31852]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31851]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31853]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31852]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31853]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31854]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31855]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31854]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31856]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31856]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31857]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31855]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31858]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31857]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31859]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31858]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31860]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31859]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31860]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31861]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31862]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31861]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31863]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31862]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31864]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31863]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31865]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31864]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31866]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31865]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31867]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31866]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31868]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31867]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31869]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31868]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31869]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31870]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31871]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31870]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31872]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31872]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31873]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31873]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31874]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31874]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31875]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31875]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31876]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31871]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31877]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31877]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31878]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31876]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31879]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31878]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31880]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31879]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31881]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31880]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31882]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31881]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31883]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31882]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31884]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31883]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31885]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31884]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31886]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31885]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31886]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31887]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31888]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31887]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31889]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31888]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31890]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31889]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31891]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31890]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31892]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31891]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31893]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31892]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31894]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31893]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31895]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31894]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31896]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31895]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31897]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31896]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31898]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31897]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31899]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31898]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31900]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31899]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31901]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31901]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31902]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31902]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31903]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31903]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31904]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31900]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31904]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31905]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31906]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31905]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31906]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31908]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31907]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31908]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31909]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31907]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31910]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31909]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31911]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31910]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31912]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31911]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31913]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31912]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31914]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31913]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31915]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31914]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31916]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31915]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31917]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31916]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31918]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31917]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31919]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31918]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31919]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31920]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31921]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31920]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31922]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31921]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31923]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31922]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31923]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31924]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31925]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31924]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31926]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31926]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31927]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31925]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31928]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31927]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31929]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31928]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31930]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31929]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31931]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31931]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31932]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31932]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31933]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31933]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31934]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31930]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31935]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31934]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31936]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31935]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31937]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31936]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31938]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31937]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31939]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31938]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31939]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31940]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31941]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31940]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31942]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31941]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31943]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31942]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31944]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31943]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31945]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31944]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31946]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31945]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31947]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31947]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31948]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31946]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31949]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31948]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31950]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31949]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31951]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31950]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31952]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31951]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31953]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31952]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31954]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31953]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31955]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31954]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31956]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31955]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31957]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31956]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31958]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31957]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31959]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31959]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31960]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31960]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31961]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31961]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31958]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31962]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31963]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31962]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31964]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31963]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31965]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31964]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31965]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31966]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31967]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31966]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31968]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31967]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31969]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31968]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31970]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31969]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31971]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31970]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31972]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31972]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31973]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31971]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31973]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31974]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31975]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31974]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31976]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31975]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 31977]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31976]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31978]]} + {:process 1 :type :fail :f :txn :value [[:append 7 31977]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31979]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31978]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31979]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 31980]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 31981]]} + {:process 5 :type :fail :f :txn :value [[:append 7 31980]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31982]]} + {:process 1 :type :fail :f :txn :value [[:append 4 31981]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31983]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31982]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 31984]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31983]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 31985]]} + {:process 5 :type :fail :f :txn :value [[:append 2 31984]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31986]]} + {:process 1 :type :fail :f :txn :value [[:append 5 31985]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31987]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31986]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 31988]]} + {:process 5 :type :fail :f :txn :value [[:append 1 31988]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31989]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31989]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 31990]]} + {:process 5 :type :fail :f :txn :value [[:append 4 31990]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 31991]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31987]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 31992]]} + {:process 1 :type :fail :f :txn :value [[:append 2 31992]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 31993]]} + {:process 5 :type :fail :f :txn :value [[:append 5 31991]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 31994]]} + {:process 1 :type :fail :f :txn :value [[:append 1 31993]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 31995]]} + {:process 5 :type :fail :f :txn :value [[:append 3 31994]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 31996]]} + {:process 1 :type :fail :f :txn :value [[:append 3 31995]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 31997]]} + {:process 5 :type :fail :f :txn :value [[:append 0 31996]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 31997]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 31998]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 31999]]} + {:process 5 :type :fail :f :txn :value [[:append 6 31998]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32000]]} + {:process 1 :type :fail :f :txn :value [[:append 0 31999]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32001]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32000]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32001]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32002]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32003]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32002]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32004]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32003]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32005]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32004]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32005]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32006]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32007]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32006]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32008]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32007]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32009]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32008]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32009]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32010]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32011]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32010]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32012]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32011]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32013]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32012]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32013]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32014]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32015]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32014]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32016]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32016]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32017]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32017]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32018]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32018]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32019]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32015]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32020]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32019]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32021]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32020]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32022]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32021]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32023]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32022]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32024]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32023]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32025]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32024]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32026]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32025]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32027]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32026]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32028]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32027]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32029]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32028]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32030]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32030]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32031]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32029]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32032]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32031]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32033]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32032]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32034]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32033]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32035]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32034]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32035]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32036]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32037]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32036]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32038]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32037]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32039]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32038]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32039]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32040]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32041]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32040]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32042]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32041]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32043]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32042]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32044]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32044]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32045]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32043]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32046]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32045]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32047]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32046]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32048]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32047]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32049]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32048]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32050]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32049]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32051]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32050]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32052]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32051]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32053]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32052]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32054]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32053]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32055]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32054]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32056]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32055]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32057]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32056]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32058]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32057]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32058]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32060]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32059]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32060]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32061]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32059]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32061]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32063]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32062]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32063]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32064]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32062]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32064]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32065]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32066]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32065]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32067]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32066]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32068]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32068]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32069]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32069]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32070]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32067]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32071]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32071]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32072]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32070]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32073]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32072]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32074]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32074]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32075]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32073]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32076]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32075]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32077]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32076]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32078]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32077]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32079]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32078]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32080]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32079]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32081]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32080]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32082]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32081]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32083]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32082]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32084]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32083]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32085]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32084]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32086]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32085]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32087]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32086]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32087]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32088]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32089]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32088]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32090]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32089]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32091]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32090]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32092]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32091]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32093]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32093]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32094]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32094]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32095]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32095]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32096]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32092]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32097]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32096]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32098]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32098]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32099]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32097]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32100]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32099]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32101]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32100]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32102]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32101]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32103]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32102]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32104]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32103]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32105]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32104]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32106]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32105]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32107]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32106]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32108]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32107]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32109]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32108]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32110]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32109]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32111]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32110]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32112]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32111]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32113]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32112]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32114]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32113]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32114]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32115]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32116]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32115]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32117]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32116]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32117]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32118]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32119]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32118]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32120]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32120]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32121]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32121]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32119]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32122]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32123]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32122]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32124]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32123]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32125]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32124]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32125]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32126]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32127]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32126]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32128]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32128]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32127]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32129]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32130]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32129]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32131]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32130]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32132]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32131]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32133]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32132]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32133]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32134]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32135]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32135]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32136]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32134]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32137]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32136]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32138]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32137]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32138]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32139]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32140]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32139]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32141]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32140]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32142]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32141]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32143]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32142]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32143]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32144]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32145]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32144]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32146]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32146]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32145]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32147]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32148]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32147]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32149]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32148]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32150]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32149]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32151]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32150]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32151]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32152]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32153]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32152]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32154]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32153]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32155]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32154]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32155]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32156]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32157]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32157]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32158]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32156]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32159]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32158]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32160]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32159]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32160]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32161]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32162]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32161]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32163]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32162]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32164]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32163]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32165]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32164]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32165]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32166]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32167]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32166]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32168]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32167]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32169]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32168]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32170]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32170]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32171]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32169]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32172]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32172]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32173]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32171]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32174]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32173]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32175]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32174]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32176]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32175]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32177]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32177]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32178]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32176]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32178]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32179]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32180]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32179]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32181]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32180]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32182]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32181]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32183]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32182]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32183]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32185]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32184]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32185]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32186]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32184]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32187]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32186]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32188]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32187]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32188]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32189]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32190]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32189]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32191]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32190]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32192]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32192]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32193]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32193]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32194]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32191]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32195]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32194]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32196]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32195]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32197]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32196]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32198]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32197]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32199]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32198]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32199]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32200]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32201]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32200]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32202]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32201]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32203]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32203]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32204]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32202]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32205]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32204]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32206]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32205]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32207]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32206]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32208]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32207]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32208]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32209]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32210]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32209]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32211]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32210]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32212]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32211]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32213]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32212]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32213]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32214]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32215]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32215]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32216]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32214]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32217]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32217]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32218]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32218]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32219]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32216]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32220]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32219]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32220]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32221]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32222]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32221]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32223]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32222]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32224]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32223]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32225]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32224]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32226]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32225]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32227]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32227]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32228]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32226]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32229]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32228]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32230]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32230]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32231]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32229]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32232]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32231]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32233]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32232]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32234]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32233]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32235]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32235]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32236]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32234]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32237]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32236]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32238]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32237]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32239]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32239]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32240]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32240]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32241]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32238]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32242]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32241]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32242]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32243]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32244]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32243]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32245]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32244]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32246]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32245]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32247]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32246]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32247]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32248]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32249]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32248]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32250]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32250]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32251]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32249]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32252]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32252]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32253]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32251]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32254]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32253]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32255]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32255]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32256]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32254]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32257]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32256]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32258]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32257]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32259]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32258]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32260]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32260]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32261]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32259]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32262]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32261]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32263]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32262]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32264]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32264]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32265]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32265]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32266]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32263]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32267]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32266]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32267]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32268]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32269]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32269]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32270]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32268]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32270]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32271]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32272]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32271]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32273]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32272]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32274]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32274]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32275]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32275]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32276]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32273]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32277]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32277]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32278]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32276]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32279]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32278]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32280]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32279]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32281]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32280]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32281]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32282]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32283]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32282]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32284]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32283]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32285]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32284]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32286]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32285]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32287]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32286]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32288]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32287]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32289]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32288]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32290]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32290]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32291]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32291]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32289]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32292]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32293]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32292]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32294]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32293]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32295]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32294]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32295]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32296]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32297]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32296]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32298]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32298]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32297]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32299]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32300]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32299]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32301]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32300]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32302]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32301]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32303]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32302]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32303]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32304]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32305]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32304]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32306]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32306]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32307]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32305]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32308]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32307]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32309]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32308]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32310]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32310]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32311]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32311]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32312]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32309]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32313]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32312]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32314]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32313]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32315]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32314]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32316]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32315]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32317]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32317]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32318]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32318]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32319]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32319]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32320]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32316]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32321]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32320]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32321]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32322]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32323]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32323]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32324]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32322]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32324]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32325]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32326]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32325]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32327]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32327]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32328]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32326]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32329]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32329]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32330]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32328]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32330]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32331]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32332]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32331]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32333]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32333]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32334]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32332]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32335]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32335]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32334]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32336]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32337]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32336]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32338]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32337]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32339]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32338]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32339]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32340]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32341]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32341]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32342]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32340]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32343]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32343]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32344]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32344]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32345]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32342]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32346]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32345]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32347]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32346]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32348]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32347]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32349]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32348]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32350]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32349]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32350]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32351]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32352]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32352]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32353]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32351]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32354]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32353]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32355]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32354]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32355]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32356]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32357]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32356]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32358]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32357]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32359]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32359]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32360]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32358]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32360]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32361]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32362]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32361]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32363]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32362]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32364]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32363]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32365]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32364]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32366]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32366]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32367]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32365]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32368]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32367]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32369]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32368]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32370]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32369]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32371]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32370]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32372]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32372]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32373]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32371]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32373]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32374]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32375]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32374]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32376]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32375]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32377]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32376]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32378]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32377]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32378]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32379]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32380]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32379]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32381]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32380]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32382]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32381]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32383]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32382]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32383]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32384]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32385]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32384]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32386]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32385]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32387]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32386]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32387]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32388]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32389]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32388]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32390]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32390]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32389]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32392]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32391]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32391]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32393]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32392]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32394]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32393]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32394]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32395]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32396]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32396]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32397]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32395]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32398]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32397]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32399]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32398]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32399]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32400]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32401]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32400]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32402]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32401]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32403]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32402]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32403]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32404]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32405]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32404]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32406]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32405]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32407]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32406]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32407]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32408]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32409]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32409]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32410]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32408]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32411]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32410]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32412]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32411]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32412]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32413]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32414]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32414]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32415]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32415]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32416]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32413]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32417]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32416]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32418]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32417]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32419]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32418]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32419]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32420]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32421]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32420]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32422]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32421]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32423]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32422]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32423]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32424]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32425]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32424]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32426]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32425]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32427]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32426]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32427]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32428]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32429]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32428]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32430]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32429]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32431]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32430]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32431]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32432]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32433]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32433]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32434]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32432]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32435]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32434]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32436]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32435]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32436]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32438]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32437]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32438]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32439]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32437]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32440]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32440]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32441]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32441]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32442]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32439]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32443]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32442]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32443]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32444]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32445]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32444]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32446]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32445]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32447]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32446]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32448]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32447]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32449]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32448]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32450]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32449]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32451]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32450]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32452]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32451]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32453]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32452]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32454]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32453]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32455]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32454]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32456]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32455]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32457]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32456]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32458]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32457]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32459]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32458]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32459]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32460]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32461]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32460]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32462]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32461]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32463]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32462]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32463]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32464]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32465]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32464]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32466]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32466]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32467]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32465]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32468]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32467]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32469]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32469]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32470]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32470]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32471]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32468]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32472]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32471]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32472]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32473]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32474]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32473]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32475]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32474]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32476]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32475]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32477]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32476]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32477]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32478]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32479]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32478]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32480]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32479]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32481]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32480]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32481]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32482]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32483]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32482]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32484]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32483]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32485]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32484]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32486]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32485]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32487]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32486]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32488]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32487]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32489]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32489]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32490]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32490]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32491]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32488]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32492]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32492]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32493]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32493]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32491]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32494]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32495]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32494]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32496]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32495]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32497]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32496]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32497]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32498]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32499]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32498]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32500]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32499]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32501]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32500]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32501]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32503]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32502]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32503]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32504]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32502]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32505]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32504]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32506]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32505]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32506]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32507]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32508]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32507]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32509]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32508]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32510]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32509]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32511]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32510]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32512]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32511]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32513]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32512]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32514]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32513]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32515]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32514]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32516]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32515]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32517]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32516]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32518]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32518]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32519]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32519]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32520]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32517]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32521]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32520]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32522]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32521]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32523]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32522]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32524]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32523]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32525]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32524]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32526]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32525]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32527]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32526]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32528]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32527]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32529]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32528]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32530]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32529]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32531]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32530]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32532]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32531]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32533]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32533]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32534]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32532]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32535]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32535]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32536]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32536]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32537]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32534]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32538]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32537]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32539]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32539]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32540]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32538]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32540]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32541]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32542]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32542]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32543]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32541]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32544]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32543]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32545]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32544]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32546]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32545]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32547]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32546]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32548]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32547]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32549]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32549]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32550]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32550]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32551]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32551]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32552]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32552]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32553]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32548]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32553]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32554]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32555]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32554]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32556]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32555]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32557]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32556]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32558]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32557]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32559]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32558]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32560]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32559]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32561]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32561]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32562]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32562]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32563]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32560]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32564]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32563]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32565]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32564]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32566]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32565]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32567]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32566]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32567]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32568]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32569]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32568]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32570]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32569]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32571]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32570]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32571]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32572]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32573]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32572]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32574]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32573]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32575]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32574]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32576]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32575]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32577]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32576]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32578]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32577]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32579]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32578]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32580]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32579]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32581]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32581]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32582]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32582]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32583]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32580]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32584]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32583]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32585]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32584]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32585]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32586]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32587]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32586]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32588]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32587]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32589]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32588]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32589]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32590]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32591]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32590]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32592]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32591]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32593]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32592]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32594]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32593]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32595]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32594]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32596]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32595]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32597]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32596]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32597]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32598]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32599]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32599]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32600]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32598]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32601]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32600]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32602]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32601]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32602]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32603]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32604]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32603]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32605]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32605]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32606]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32604]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32607]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32606]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32608]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32607]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32609]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32609]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32610]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32610]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32611]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32611]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32612]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32608]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32613]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32612]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32614]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32613]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32615]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32614]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32615]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32616]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32617]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32616]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32618]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32617]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32619]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32618]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32619]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32620]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32621]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32620]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32621]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32622]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32623]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32623]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32624]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32622]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32625]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32624]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32626]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32625]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32627]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32626]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32628]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32627]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32628]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32629]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32630]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32629]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32631]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32631]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32632]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32630]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32633]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32633]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32634]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32632]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32635]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32634]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32636]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32635]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32637]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32636]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32637]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32638]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32639]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32638]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32640]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32639]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32641]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32640]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32641]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32642]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32643]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32642]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32644]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32643]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32645]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32644]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32645]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32646]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32647]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32647]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32648]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32646]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32649]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32648]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32650]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32649]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32650]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32651]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32652]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32651]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32653]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32652]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32654]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32653]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32655]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32654]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32655]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32657]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32656]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32656]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32658]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32658]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32657]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32659]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32660]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32659]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32661]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32661]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32662]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32660]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32663]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32663]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32664]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32664]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32665]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32662]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32666]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32666]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32667]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32667]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32668]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32665]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32669]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32669]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32670]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32668]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32671]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32671]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32672]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32670]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32673]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32672]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32674]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32673]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32675]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32674]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32676]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32675]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32676]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32677]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32678]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32677]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32679]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32678]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32680]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32679]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32681]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32680]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32682]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32682]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32683]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32683]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32684]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32684]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32685]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32681]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32686]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32685]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32687]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32687]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32688]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32686]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32689]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32688]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32689]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32690]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32691]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32690]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32692]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32691]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32693]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32692]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32693]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32694]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32695]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32694]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32696]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32695]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32697]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32696]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32697]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32698]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32699]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32699]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32700]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32698]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32701]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32700]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32702]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32701]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32702]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32703]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32704]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32703]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32705]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32704]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32706]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32705]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32707]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32706]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32707]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32708]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32709]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32708]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32710]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32710]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32711]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32711]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32712]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32712]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32713]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32709]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32714]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32713]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32715]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32714]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32716]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32715]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32716]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32717]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32718]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32717]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32719]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32718]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32720]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32719]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32721]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32720]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32721]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32723]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32722]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32723]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32724]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32722]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32725]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32724]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32726]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32725]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32727]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32726]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32728]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32727]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32729]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32728]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32729]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32730]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32731]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32731]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32732]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32730]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32733]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32732]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32734]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32733]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32735]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32734]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32736]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32735]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32737]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32736]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32738]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32738]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32739]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32739]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32740]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32740]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32741]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32737]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32742]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32742]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32743]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32741]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32744]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32744]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32745]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32745]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32746]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32743]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32747]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32746]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32748]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32747]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32749]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32748]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32750]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32750]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32751]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32749]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32752]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32751]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32753]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32752]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32754]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32753]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32755]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32754]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32756]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32755]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32757]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32756]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32758]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32757]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32759]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32759]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32760]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32758]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32761]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32760]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32762]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32761]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32763]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32762]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32764]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32763]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32765]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32764]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32766]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32765]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32767]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32766]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32768]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32768]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32769]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32769]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32770]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32767]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32770]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32771]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32772]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32771]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32772]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32773]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32774]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32773]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32775]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32774]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32776]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32775]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32777]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32776]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32778]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32777]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32779]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32778]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32780]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32780]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32779]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32782]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32781]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32782]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32783]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32781]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32784]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32783]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32785]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32784]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32785]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32786]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32787]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32786]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32788]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32787]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32789]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32788]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32789]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32790]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32791]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32790]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32792]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32791]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32793]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32792]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32794]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32793]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32795]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32795]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32796]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32796]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32797]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32794]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32798]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32797]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32799]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32798]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32800]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32799]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32801]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32800]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32802]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32801]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32803]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32803]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32804]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32802]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32805]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32804]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32806]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32805]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32807]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32806]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32807]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32808]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32809]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32808]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32810]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32809]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32811]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32810]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32811]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32812]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32813]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32812]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32814]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32813]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32815]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32814]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32815]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32816]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32817]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32816]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32818]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32817]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32819]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32818]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32820]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32819]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32821]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32820]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32822]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32821]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32823]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32822]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32824]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32824]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32825]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32825]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32826]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32826]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32827]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32823]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32828]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32827]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32829]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32828]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32830]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32829]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32831]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32830]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32832]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32831]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32832]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32833]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32834]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32833]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32835]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32834]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32836]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32835]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32837]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32836]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32837]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32838]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32839]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32838]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32840]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32839]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32841]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32840]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32841]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32843]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32842]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32843]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32844]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32842]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32845]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32844]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32846]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32845]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32846]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32847]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32848]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32847]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32849]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32848]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32850]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32850]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32851]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32851]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32852]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32852]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32853]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32853]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32854]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32854]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32855]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32849]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32856]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32855]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32857]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32856]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32858]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32857]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32859]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32858]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32860]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32859]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32861]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32860]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32862]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32861]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32862]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32863]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32864]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32864]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32865]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32863]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32866]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32865]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32867]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32866]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32867]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32868]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32869]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32868]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32870]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32869]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32871]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32870]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32871]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32872]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32873]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32872]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32874]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32873]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32875]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32874]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32875]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32876]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32877]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32876]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32878]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32878]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32877]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32879]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32880]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32880]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32881]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32881]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32882]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32882]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32883]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32879]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32884]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32884]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32885]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32883]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32885]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32886]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32887]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32887]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32888]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32886]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32889]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32888]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32890]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32889]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32890]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32891]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32892]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32891]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32893]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32892]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32894]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32893]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32895]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32894]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32895]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32896]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32897]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32896]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32897]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32898]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32899]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32899]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32900]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32898]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32900]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32901]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32902]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32902]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32903]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32903]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32904]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32901]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32905]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32905]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32906]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32904]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32907]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32907]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32906]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32908]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32909]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32908]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32910]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32909]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32911]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32911]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32912]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32910]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32912]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32913]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32914]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32914]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32915]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32913]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32916]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32915]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32917]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32916]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32917]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32918]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32919]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32918]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32920]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32919]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32921]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32920]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32922]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32921]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32923]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32922]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32924]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32923]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32925]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32924]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32926]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32925]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32926]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32928]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32927]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32928]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32929]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32929]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32930]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32927]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32931]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32930]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32931]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32932]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32933]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32933]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32934]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32932]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32935]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32934]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32936]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32935]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32936]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32937]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32938]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32937]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32939]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32938]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32940]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32939]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32941]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32940]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32941]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32942]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32943]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32942]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32944]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32943]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32945]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32944]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32946]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32945]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32947]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32946]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32948]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32947]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32949]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32948]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32950]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32949]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32950]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32951]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32952]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32952]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32953]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32953]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32954]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32954]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32955]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32951]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32956]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32955]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32956]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32957]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32958]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32957]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32959]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32959]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32960]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32958]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32961]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32960]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32962]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32961]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32962]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32963]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32964]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32963]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32965]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32964]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32966]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32965]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32967]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32966]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32968]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32967]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32969]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32968]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32970]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32969]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32971]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32970]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32972]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32971]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32972]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32973]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 32974]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32973]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32975]]} + {:process 1 :type :fail :f :txn :value [[:append 0 32974]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32976]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32975]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32977]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32976]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32977]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 32978]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32979]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32979]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32980]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32980]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32981]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32981]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32982]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32982]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 32983]]} + {:process 5 :type :fail :f :txn :value [[:append 7 32983]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32984]]} + {:process 1 :type :fail :f :txn :value [[:append 1 32978]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32985]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32984]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 32986]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32985]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 32986]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 32987]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32988]]} + {:process 1 :type :fail :f :txn :value [[:append 6 32987]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 32989]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32988]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 32990]]} + {:process 5 :type :fail :f :txn :value [[:append 1 32990]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 32991]]} + {:process 5 :type :fail :f :txn :value [[:append 6 32991]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 32992]]} + {:process 1 :type :fail :f :txn :value [[:append 5 32989]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 32993]]} + {:process 5 :type :fail :f :txn :value [[:append 4 32992]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 32994]]} + {:process 5 :type :fail :f :txn :value [[:append 5 32994]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 32995]]} + {:process 1 :type :fail :f :txn :value [[:append 7 32993]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 32996]]} + {:process 5 :type :fail :f :txn :value [[:append 3 32995]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 32997]]} + {:process 1 :type :fail :f :txn :value [[:append 2 32996]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 32998]]} + {:process 1 :type :fail :f :txn :value [[:append 4 32998]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 32999]]} + {:process 1 :type :fail :f :txn :value [[:append 3 32999]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33000]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33000]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33001]]} + {:process 5 :type :fail :f :txn :value [[:append 0 32997]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33001]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33002]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33003]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33002]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33004]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33003]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33005]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33004]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33006]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33005]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33006]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33007]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33008]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33008]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33009]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33007]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33010]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33010]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33011]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33011]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33012]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33009]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33013]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33013]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33014]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33012]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33015]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33015]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33016]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33014]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33017]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33016]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33018]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33017]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33019]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33018]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33019]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33020]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33021]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33020]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33022]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33021]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33023]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33022]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33024]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33023]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33025]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33024]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33026]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33025]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33027]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33026]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33028]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33027]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33028]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33029]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33030]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33030]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33031]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33031]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33032]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33032]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33033]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33033]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33029]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33034]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33035]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33034]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33036]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33035]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33037]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33036]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33037]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33038]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33039]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33039]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33040]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33038]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33041]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33040]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33042]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33041]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33042]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33043]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33044]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33044]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33045]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33043]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33046]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33045]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33047]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33046]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33047]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33048]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33049]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33048]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33049]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33050]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33051]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33051]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33052]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33050]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33052]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33053]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33054]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33054]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33055]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33053]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33056]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33056]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33057]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33057]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33058]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33055]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33059]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33058]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33060]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33059]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33061]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33061]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33062]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33062]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33063]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33060]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33064]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33063]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33065]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33065]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33066]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33064]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33066]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33067]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33068]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33067]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33069]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33068]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33070]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33069]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33071]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33070]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33071]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33072]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33073]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33072]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33074]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33073]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33075]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33074]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33075]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33076]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33077]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33076]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33078]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33077]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33079]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33078]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33080]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33080]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33081]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33081]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33079]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33082]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33083]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33082]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33084]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33083]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33085]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33084]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33085]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33086]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33087]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33086]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33088]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33088]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33087]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33089]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33090]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33089]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33091]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33091]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33092]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33090]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33093]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33092]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33094]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33093]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33095]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33094]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33095]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33096]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33097]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33096]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33098]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33097]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33099]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33098]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33099]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33100]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33101]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33100]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33102]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33101]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33103]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33102]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33103]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33104]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33105]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33104]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33106]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33105]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33107]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33106]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33107]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33108]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33109]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33108]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33110]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33110]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33109]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33111]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33111]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33112]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33113]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33113]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33114]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33112]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33115]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33114]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33116]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33115]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33116]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33117]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33118]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33117]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33119]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33118]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33120]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33119]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33121]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33120]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33121]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33122]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33123]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33122]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33124]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33123]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33125]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33124]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33125]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33126]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33127]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33126]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33128]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33127]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33129]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33129]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33130]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33128]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33130]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33131]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33132]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33132]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33133]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33133]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33134]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33131]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33135]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33134]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33136]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33135]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33137]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33137]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33138]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33136]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33138]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33139]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33140]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33140]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33141]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33141]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33142]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33139]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33143]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33143]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33142]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33144]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33145]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33144]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33146]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33145]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33147]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33146]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33147]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33148]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33149]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33148]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33150]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33149]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33151]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33150]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33151]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33153]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33152]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33153]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33154]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33152]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33155]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33155]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33156]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33156]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33157]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33154]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33158]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33157]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33159]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33158]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33160]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33159]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33161]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33160]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33162]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33161]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33162]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33163]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33164]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33164]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33165]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33165]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33166]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33163]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33167]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33167]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33166]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33168]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33169]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33168]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33170]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33169]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33171]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33170]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33171]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33172]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33173]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33172]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33174]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33173]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33175]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33174]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33176]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33175]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33177]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33176]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33178]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33177]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33179]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33178]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33179]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33180]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33181]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33180]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33182]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33182]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33183]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33183]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33184]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33181]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33185]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33184]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33185]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33186]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33187]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33186]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33188]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33187]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33189]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33188]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33190]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33189]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33191]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33191]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33192]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33192]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33193]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33190]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33193]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33195]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33194]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33195]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33196]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33194]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33196]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33197]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33198]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33197]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33199]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33198]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33200]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33199]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33201]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33200]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33202]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33201]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33203]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33202]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33204]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33203]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33205]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33204]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33206]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33206]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33207]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33207]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33208]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33208]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33209]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33209]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33210]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33205]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33210]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33211]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33212]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33211]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33213]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33212]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33214]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33213]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33215]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33215]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33216]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33214]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33217]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33216]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33218]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33217]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33219]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33218]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33220]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33219]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33221]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33220]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33222]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33221]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33223]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33222]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33224]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33224]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33225]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33223]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33225]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33226]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33227]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33226]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33228]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33227]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33229]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33228]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33230]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33229]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33230]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33231]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33232]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33231]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33233]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33232]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33234]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33233]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33235]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33234]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33235]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33236]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33237]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33236]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33238]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33237]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33239]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33239]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33240]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33238]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33240]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33241]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33242]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33241]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33243]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33242]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33244]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33243]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33245]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33244]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33245]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33246]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33247]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33246]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33248]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33247]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33249]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33248]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33249]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33250]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33251]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33250]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33252]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33251]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33253]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33252]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33253]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33254]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33255]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33254]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33256]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33255]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33257]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33256]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33257]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33258]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33259]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33258]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33260]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33259]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33261]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33260]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33262]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33262]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33263]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33263]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33264]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33261]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33265]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33264]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33265]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33266]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33267]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33267]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33268]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33266]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33268]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33269]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33270]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33270]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33271]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33269]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33272]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33271]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33273]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33272]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33273]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33274]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33275]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33274]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33276]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33275]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33277]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33276]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33277]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33279]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33278]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33279]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33280]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33278]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33281]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33280]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33282]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33282]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33283]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33281]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33284]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33284]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33285]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33285]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33283]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33286]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33287]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33286]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33288]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33287]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33289]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33288]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33289]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33290]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33291]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33291]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33292]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33292]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33293]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33290]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33294]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33293]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33295]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33294]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33296]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33295]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33296]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33297]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33298]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33297]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33299]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33298]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33300]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33299]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33301]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33301]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33302]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33300]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33302]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33303]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33304]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33303]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33305]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33304]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33306]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33305]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33307]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33306]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33308]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33307]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33309]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33308]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33310]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33309]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33311]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33310]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33312]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33311]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33313]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33313]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33314]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33314]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33315]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33315]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33316]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33316]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33317]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33312]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33318]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33317]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33319]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33318]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33320]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33319]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33321]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33320]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33322]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33321]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33323]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33322]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33323]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33324]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33325]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33324]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33326]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33325]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33327]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33326]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33328]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33327]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33328]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33329]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33330]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33330]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33331]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33329]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33332]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33331]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33333]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33332]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33333]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33334]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33335]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33334]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33336]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33335]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33337]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33336]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33337]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33338]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33339]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33338]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33340]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33340]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33339]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33341]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33342]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33342]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33343]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33343]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33344]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33344]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33345]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33345]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33346]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33341]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33347]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33346]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33348]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33347]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33349]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33348]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33349]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33350]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33351]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33351]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33352]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33350]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33353]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33352]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33354]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33353]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33355]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33354]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33356]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33356]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33357]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33355]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33358]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33357]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33359]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33358]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33360]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33359]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33361]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33360]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33361]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33362]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33363]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33363]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33364]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33364]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33365]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33362]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33366]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33366]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33367]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33365]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33368]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33367]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33369]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33369]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33370]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33370]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33371]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33368]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33372]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33371]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33373]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33372]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33374]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33373]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33374]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33375]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33376]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33375]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33377]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33376]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33378]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33377]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33379]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33378]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33379]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33380]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33381]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33380]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33382]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33381]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33383]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33382]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33384]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33383]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33385]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33384]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33386]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33385]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33387]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33386]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33387]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33388]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33389]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33388]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33390]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33390]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33391]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33389]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33392]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33391]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33392]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33393]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33394]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33393]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33395]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33394]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33395]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33396]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33397]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33396]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33398]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33398]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33399]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33399]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33400]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33397]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33401]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33400]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33402]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33401]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33403]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33402]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33403]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33404]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33405]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33404]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33406]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33405]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33407]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33406]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33407]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33408]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33409]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33408]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33410]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33409]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33411]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33410]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33412]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33411]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33413]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33413]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33414]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33414]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33415]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33412]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33416]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33415]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33417]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33416]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33418]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33417]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33418]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33419]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33420]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33419]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33421]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33420]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33422]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33421]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33423]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33423]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33424]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33424]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33425]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33425]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33426]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33426]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33427]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33427]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33428]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33428]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33429]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33422]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33429]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33430]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33431]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33430]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33432]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33432]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33433]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33431]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33434]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33433]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33435]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33434]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33436]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33435]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33437]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33436]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33438]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33437]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33439]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33438]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33440]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33439]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33440]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33441]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33442]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33441]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33443]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33442]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33444]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33443]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33445]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33444]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33445]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33446]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33447]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33446]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33448]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33447]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33449]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33448]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33449]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33450]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33451]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33450]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33452]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33451]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33453]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33452]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33453]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33454]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33455]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33454]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33456]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33456]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33457]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33455]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33458]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33458]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33459]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33457]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33460]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33460]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33459]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33461]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33462]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33461]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33463]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33462]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33464]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33463]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33465]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33464]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33465]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33466]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33467]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33466]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33468]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33467]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33469]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33468]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33469]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33470]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33471]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33470]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33472]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33471]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33473]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33472]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33473]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33474]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33475]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33474]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33476]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33475]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33477]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33476]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33477]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33478]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33479]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33478]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33480]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33479]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33481]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33480]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33482]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33482]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33483]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33483]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33481]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33484]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33485]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33484]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33486]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33485]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33487]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33486]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33487]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33488]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33489]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33488]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33490]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33489]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33491]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33490]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33491]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33492]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33493]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33492]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33494]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33493]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33495]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33494]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33495]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33496]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33497]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33496]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33498]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33497]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33499]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33498]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33499]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33500]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33501]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33500]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33502]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33501]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33503]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33502]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33504]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33503]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33505]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33504]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33506]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33505]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33507]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33507]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33508]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33506]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33509]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33508]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33510]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33510]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33511]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33509]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33512]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33511]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33513]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33512]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33513]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33514]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33515]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33515]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33516]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33514]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33517]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33516]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33518]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33517]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33518]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33519]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33520]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33519]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33521]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33520]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33522]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33521]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33523]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33522]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33523]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33524]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33525]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33524]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33526]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33525]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33527]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33526]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33527]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33528]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33529]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33529]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33530]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33528]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33531]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33531]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33532]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33532]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33533]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33530]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33534]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33533]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33534]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33535]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33536]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33535]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33537]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33537]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33538]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33536]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33539]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33539]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33540]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33538]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33541]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33540]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33542]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33541]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33543]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33542]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33543]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33544]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33545]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33544]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33546]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33545]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33547]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33546]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33547]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33548]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33549]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33548]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33550]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33549]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33551]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33550]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33551]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33552]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33553]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33552]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33553]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33554]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33555]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33554]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33556]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33556]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33557]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33557]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33555]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33558]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33559]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33558]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33560]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33559]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33561]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33560]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33562]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33561]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33563]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33563]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33564]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33564]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33565]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33562]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33566]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33565]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33567]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33566]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33568]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33567]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33569]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33568]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33570]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33569]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33571]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33570]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33571]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33572]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33573]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33572]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33574]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33573]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33575]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33574]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33575]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33577]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33576]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33577]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33578]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33576]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33579]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33578]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33580]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33579]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33581]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33581]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33582]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33582]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33583]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33580]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33584]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33583]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33585]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33584]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33586]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33585]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33587]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33586]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33588]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33587]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33589]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33589]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33590]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33588]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33591]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33590]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33592]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33591]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33593]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33592]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33593]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33594]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33595]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33594]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33596]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33595]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33597]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33596]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33597]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33598]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33599]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33598]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33600]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33599]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33601]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33600]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33601]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33602]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33603]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33602]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33604]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33603]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33605]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33604]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33606]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33605]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33606]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33607]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33608]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33608]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33609]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33609]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33610]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33610]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33611]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33607]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33612]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33611]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33613]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33612]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33614]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33614]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33615]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33615]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33616]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33613]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33617]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33617]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33618]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33616]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33619]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33618]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33620]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33619]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33621]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33620]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33621]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33622]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33623]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33623]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33624]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33622]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33625]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33624]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33626]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33625]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33626]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33627]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33628]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33627]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33629]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33628]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33630]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33629]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33631]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33630]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33631]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33632]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33633]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33632]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33634]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33634]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33635]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33635]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33636]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33633]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33637]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33636]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33637]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33638]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33639]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33638]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33640]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33640]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33639]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33641]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33642]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33641]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33643]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33642]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33644]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33643]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33645]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33644]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33645]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33646]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33647]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33646]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33648]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33647]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33649]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33648]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33649]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33650]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33651]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33650]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33652]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33651]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33653]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33652]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33653]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33654]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33655]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33654]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33656]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33655]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33657]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33656]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33657]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33658]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33659]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33659]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33660]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33658]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33661]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33661]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33662]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33662]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33663]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33660]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33664]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33663]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33665]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33664]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33666]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33666]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33667]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33667]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33668]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33665]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33669]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33669]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33668]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33670]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33671]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33670]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33672]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33671]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33673]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33672]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33673]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33674]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33675]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33675]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33676]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33674]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33677]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33676]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33678]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33677]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33678]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33679]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33680]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33679]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33680]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33682]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33681]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33682]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33683]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33681]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33684]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33684]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33685]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33685]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33683]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33686]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33687]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33686]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33687]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33688]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33689]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33689]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33690]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33688]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33690]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33692]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33691]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33692]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33693]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33693]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33694]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33691]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33695]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33695]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33694]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33696]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33697]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33696]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33698]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33697]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33699]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33698]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33699]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33700]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33701]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33700]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33701]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33702]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33703]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33703]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33704]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33702]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33704]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33705]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33706]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33706]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33707]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33705]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33708]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33708]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33709]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33709]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33710]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33707]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33711]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33710]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33711]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33712]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33713]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33712]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33714]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33713]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33715]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33714]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33715]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33716]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33717]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33716]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33718]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33718]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33717]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33720]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33719]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33720]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33721]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33719]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33722]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33721]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33723]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33722]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33723]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33724]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33725]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33724]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33726]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33725]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33727]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33726]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33727]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33728]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33729]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33728]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33730]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33729]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33731]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33730]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33731]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33732]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33733]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33732]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33734]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33733]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33735]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33734]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33736]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33736]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33737]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33735]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33737]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33738]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33739]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33738]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33740]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33739]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33741]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33740]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33742]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33741]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33742]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33743]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33744]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33743]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33745]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33745]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33746]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33744]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33747]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33747]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33746]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33748]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33749]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33748]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33749]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33750]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33751]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33751]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33752]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33750]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33752]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33753]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33754]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33754]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33755]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33753]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33756]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33755]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33757]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33756]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33757]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33758]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33759]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33758]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33760]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33760]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33761]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33761]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33762]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33759]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33763]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33762]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33763]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33764]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33765]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33764]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33766]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33765]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33767]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33766]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33767]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33768]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33769]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33768]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33770]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33770]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33769]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33771]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33772]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33771]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33773]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33772]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33774]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33773]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33775]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33774]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33775]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33776]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33777]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33776]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33777]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33778]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33779]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33779]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33780]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33778]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33781]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33780]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33782]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33781]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33783]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33782]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33784]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33783]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33785]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33784]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33786]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33785]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33787]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33787]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33788]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33788]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33789]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33786]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33790]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33789]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33790]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33792]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33791]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33792]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33793]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33793]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33794]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33794]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33795]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33791]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33795]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33797]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33796]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33797]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33798]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33796]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33799]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33798]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33800]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33799]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33801]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33800]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33802]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33801]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33802]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33803]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33804]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33803]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33805]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33804]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33806]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33805]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33807]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33806]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33808]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33808]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33809]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33807]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33810]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33809]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33811]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33810]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33812]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33811]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33813]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33812]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33814]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33813]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33814]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33815]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33816]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33815]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33817]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33816]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33818]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33817]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33819]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33818]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33819]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33820]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33821]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33820]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33822]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33821]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33823]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33822]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33823]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33824]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33825]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33824]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33826]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33826]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33827]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33825]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33828]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33827]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33829]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33828]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33830]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33829]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33830]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33831]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33832]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33832]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33833]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33831]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33834]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33834]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33835]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33835]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33836]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33833]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33837]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33836]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33837]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33838]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33839]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33839]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33840]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33838]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33841]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33840]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33842]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33841]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33842]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33843]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33844]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33843]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33845]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33844]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33846]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33845]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33847]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33846]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33847]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33848]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33849]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33848]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33850]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33850]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33851]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33849]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33852]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33851]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33852]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33853]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33854]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33853]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33854]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33855]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33856]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33855]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33857]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33856]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33858]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33857]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33859]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33858]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33860]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33860]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33861]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33861]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33862]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33859]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33863]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33863]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33864]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33864]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33865]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33862]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33866]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33866]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33867]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33865]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33868]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33867]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33869]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33868]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33870]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33869]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33870]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33871]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33872]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33871]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33873]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33872]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33874]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33873]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33875]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33874]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33876]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33876]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33877]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33875]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33878]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33877]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33878]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33879]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33880]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33879]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33881]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33880]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33882]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33881]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33883]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33882]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33883]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33884]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33885]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33884]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33886]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33886]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33887]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33887]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33888]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33888]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33889]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33889]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33890]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33885]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33891]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33890]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33891]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33893]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33892]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33893]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33894]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33892]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33894]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33895]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33896]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33895]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33896]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33897]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33898]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33897]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33899]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33899]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33900]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33900]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33901]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33901]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33902]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33902]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33903]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33903]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33904]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33904]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33905]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33905]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33906]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33906]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33907]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33907]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33908]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33908]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33909]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33909]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33910]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33910]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33911]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33911]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33912]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33912]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33913]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33913]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33914]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33914]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33915]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33915]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33916]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33916]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33917]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33917]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33918]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33918]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33919]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33919]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33920]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33920]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33921]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33921]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33922]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33922]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33923]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33923]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33924]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33924]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33925]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33925]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33926]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33926]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33927]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33927]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33928]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33928]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33929]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33929]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33930]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33930]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33931]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33931]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33932]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33932]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33933]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33933]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33934]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33934]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33935]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33935]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33936]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33936]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33937]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33937]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33938]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33938]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33939]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33939]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33940]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33940]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33941]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33941]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33942]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33942]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33943]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33943]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33944]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33944]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33945]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33945]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33946]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33946]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33947]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33947]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33948]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33948]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33949]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33949]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33950]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33950]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33951]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33951]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33952]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33952]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33953]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33953]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33954]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33954]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33955]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33955]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33956]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33956]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33957]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33957]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33958]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33958]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33959]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33959]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33960]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33898]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33961]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33960]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33962]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33962]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33963]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33963]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33964]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33964]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33965]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33965]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33966]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33966]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33967]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33967]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33968]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33968]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33969]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33969]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33970]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33970]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33971]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33971]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33972]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33961]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33972]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33973]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33973]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33974]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33975]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33974]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33976]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33975]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33977]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33976]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33977]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 33978]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 33979]]} + {:process 5 :type :fail :f :txn :value [[:append 2 33978]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33980]]} + {:process 1 :type :fail :f :txn :value [[:append 6 33979]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33981]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33980]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33981]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 33982]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 33983]]} + {:process 5 :type :fail :f :txn :value [[:append 1 33982]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33984]]} + {:process 1 :type :fail :f :txn :value [[:append 7 33983]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33985]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33984]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33985]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 33986]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 33987]]} + {:process 5 :type :fail :f :txn :value [[:append 4 33986]]} + {:process 1 :type :fail :f :txn :value [[:append 4 33987]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33988]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33989]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33989]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 33990]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33988]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 33990]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 33992]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 33991]]} + {:process 5 :type :fail :f :txn :value [[:append 3 33991]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 33993]]} + {:process 5 :type :fail :f :txn :value [[:append 0 33993]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 33994]]} + {:process 1 :type :fail :f :txn :value [[:append 0 33992]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 33995]]} + {:process 5 :type :fail :f :txn :value [[:append 6 33994]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 33996]]} + {:process 1 :type :fail :f :txn :value [[:append 2 33995]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 33997]]} + {:process 5 :type :fail :f :txn :value [[:append 7 33996]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 33998]]} + {:process 1 :type :fail :f :txn :value [[:append 1 33997]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 33999]]} + {:process 1 :type :fail :f :txn :value [[:append 3 33999]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34000]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34000]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34001]]} + {:process 5 :type :fail :f :txn :value [[:append 5 33998]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34002]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34002]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34003]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34001]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34004]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34003]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34005]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34004]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34006]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34005]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34006]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34007]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34008]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34007]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34009]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34008]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34010]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34009]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34011]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34010]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34011]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34012]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34013]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34012]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34014]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34013]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34015]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34015]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34016]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34014]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34017]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34017]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34018]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34018]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34019]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34016]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34020]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34019]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34021]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34020]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34022]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34022]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34023]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34021]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34023]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34024]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34025]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34024]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34026]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34025]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34027]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34027]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34026]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34028]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34028]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34029]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34030]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34029]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34031]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34030]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34032]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34031]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34033]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34032]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34033]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34035]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34034]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34035]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34036]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34034]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34037]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34036]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34038]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34037]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34039]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34038]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34040]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34039]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34041]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34041]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34042]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34042]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34043]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34040]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34044]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34043]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34044]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34045]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34046]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34045]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34047]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34046]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34048]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34047]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34049]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34048]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34049]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34050]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34051]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34050]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34052]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34051]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34053]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34053]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34054]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34054]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34055]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34052]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34056]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34056]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34057]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34055]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34058]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34058]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34059]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34059]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34060]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34057]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34060]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34061]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34062]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34061]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34063]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34062]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34064]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34064]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34065]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34065]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34066]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34063]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34067]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34066]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34067]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34068]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34069]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34068]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34070]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34069]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34071]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34070]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34071]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34072]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34073]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34072]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34074]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34073]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34075]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34074]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34075]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34076]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34077]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34077]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34078]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34078]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34079]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34079]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34080]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34076]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34081]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34080]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34082]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34081]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34082]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34083]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34084]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34083]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34085]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34085]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34086]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34084]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34087]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34087]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34088]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34086]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34089]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34088]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34090]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34089]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34091]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34090]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34091]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34092]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34093]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34092]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34093]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34095]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34094]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34095]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34096]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34094]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34097]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34096]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34098]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34097]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34098]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34099]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34100]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34099]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34100]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34101]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34102]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34101]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34103]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34102]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34104]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34103]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34105]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34104]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34105]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34106]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34107]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34106]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34108]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34108]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34109]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34107]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34110]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34109]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34111]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34111]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34110]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34112]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34113]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34112]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34114]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34113]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34115]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34114]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34116]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34115]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34117]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34116]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34118]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34117]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34119]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34119]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34120]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34118]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34120]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34121]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34122]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34121]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34123]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34122]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34124]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34123]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34125]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34124]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34125]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34126]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34127]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34126]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34128]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34127]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34129]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34128]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34129]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34130]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34131]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34130]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34131]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34132]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34133]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34133]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34134]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34132]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34134]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34136]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34135]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34136]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34137]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34135]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34138]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34137]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34139]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34138]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34139]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34140]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34141]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34141]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34142]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34142]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34143]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34140]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34144]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34144]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34145]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34143]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34146]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34145]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34147]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34146]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34148]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34147]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34148]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34149]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34150]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34149]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34151]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34150]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34152]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34151]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34153]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34152]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34153]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34154]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34155]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34154]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34156]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34155]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34157]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34156]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34158]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34158]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34159]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34159]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34157]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34160]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34161]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34160]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34162]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34161]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34163]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34162]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34163]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34164]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34165]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34164]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34166]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34166]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34167]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34165]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34168]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34167]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34169]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34168]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34169]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34170]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34171]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34170]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34171]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34172]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34173]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34173]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34174]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34172]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34174]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34175]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34176]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34175]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34177]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34176]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34178]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34177]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34179]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34178]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34179]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34180]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34181]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34180]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34182]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34182]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34183]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34181]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34184]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34183]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34185]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34184]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34186]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34185]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34186]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34187]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34188]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34188]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34189]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34189]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34190]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34190]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34191]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34187]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34192]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34191]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34193]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34192]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34194]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34193]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34195]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34194]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34195]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34197]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34196]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34197]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34198]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34196]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34198]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34199]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34200]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34199]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34201]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34201]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34202]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34200]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34203]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34203]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34204]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34202]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34205]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34204]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34206]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34205]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34207]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34206]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34207]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34208]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34209]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34209]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34210]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34208]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34210]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34211]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34212]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34211]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34212]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34213]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34214]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34213]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34215]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34214]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34216]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34215]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34217]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34216]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34217]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34218]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34219]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34219]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34220]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34218]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34221]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34220]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34222]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34221]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34222]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34223]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34224]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34224]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34225]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34225]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34226]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34223]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34227]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34226]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34228]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34227]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34229]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34228]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34230]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34229]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34231]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34230]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34232]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34231]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34233]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34232]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34233]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34234]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34235]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34235]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34236]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34234]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34237]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34236]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34238]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34237]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34238]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34239]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34240]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34239]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34241]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34240]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34242]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34241]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34243]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34242]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34243]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34244]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34245]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34244]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34246]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34245]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34247]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34246]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34247]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34248]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34249]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34248]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34250]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34250]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34251]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34251]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34252]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34252]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34249]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34253]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34254]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34253]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34255]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34255]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34256]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34254]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34257]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34257]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34256]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34258]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34259]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34259]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34260]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34258]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34261]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34260]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34262]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34261]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34262]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34263]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34264]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34263]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34265]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34264]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34266]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34265]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34267]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34266]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34268]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34267]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34269]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34268]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34270]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34269]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34271]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34270]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34271]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34272]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34273]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34272]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34274]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34274]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34275]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34275]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34276]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34276]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34277]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34277]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34278]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34273]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34279]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34278]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34280]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34280]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34281]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34279]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34282]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34281]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34282]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34283]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34284]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34283]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34285]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34284]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34286]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34285]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34287]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34286]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34287]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34288]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34289]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34288]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34290]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34289]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34291]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34290]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34291]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34292]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34293]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34293]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34294]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34292]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34295]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34294]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34296]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34295]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34296]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34297]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34298]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34297]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34299]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34298]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34300]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34299]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34301]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34300]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34301]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34302]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34303]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34302]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34304]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34304]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34305]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34303]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34306]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34305]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34307]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34306]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34308]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34307]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34308]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34309]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34310]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34309]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34311]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34310]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34312]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34311]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34313]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34312]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34313]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34314]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34315]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34315]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34316]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34314]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34316]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34317]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34318]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34317]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34318]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34319]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34320]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34319]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34321]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34320]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34322]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34321]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34323]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34322]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34323]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34324]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34325]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34325]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34326]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34324]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34327]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34327]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34328]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34328]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34326]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34329]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34330]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34329]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34330]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34331]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34332]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34331]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34333]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34333]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34334]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34332]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34335]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34335]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34336]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34334]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34337]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34336]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34337]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34339]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34338]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34338]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34340]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34340]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34341]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34341]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34342]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34342]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34343]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34343]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34339]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34344]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34345]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34344]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34346]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34345]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34347]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34346]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34347]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34348]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34349]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34348]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34350]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34349]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34351]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34350]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34351]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34352]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34353]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34353]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34354]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34352]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34355]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34355]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34356]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34354]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34357]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34357]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34358]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34356]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34359]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34359]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34358]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34360]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34361]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34360]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34362]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34361]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34363]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34362]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34363]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34364]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34365]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34364]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34366]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34365]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34366]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34367]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34368]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34367]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34368]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34369]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34370]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34369]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34371]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34370]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34372]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34371]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34373]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34372]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34373]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34374]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34375]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34374]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34376]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34375]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34377]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34376]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34377]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34378]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34379]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34378]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34380]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34380]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34381]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34381]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34382]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34382]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34379]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34383]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34384]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34383]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34385]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34384]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34386]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34385]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34387]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34386]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34387]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34388]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34389]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34388]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34390]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34389]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34391]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34390]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34391]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34392]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34393]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34393]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34394]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34392]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34395]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34394]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34396]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34395]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34396]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34397]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34398]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34397]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34399]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34398]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34400]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34399]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34401]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34400]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34401]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34402]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34403]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34402]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34404]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34403]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34405]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34405]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34406]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34406]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34407]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34404]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34408]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34407]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34409]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34409]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34410]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34408]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34411]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34410]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34411]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34412]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34413]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34413]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34414]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34412]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34415]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34414]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34416]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34415]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34416]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34417]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34418]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34417]]} + {:process 1 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34419]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34418]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34419]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34420]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34421]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34420]]} + {:process 1 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34422]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34421]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34422]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34423]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34424]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34423]]} + {:process 1 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34425]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34424]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34426]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34425]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34427]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34426]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34427]]} + {:process 1 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34428]]} + {:process 1 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 1 34429]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34428]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34430]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34430]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34431]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34431]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34432]]} + {:process 1 :type :fail :f :txn :value [[:append 1 34429]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34433]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34432]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34433]]} + {:process 1 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34434]]} + {:process 1 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 6 34435]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34434]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34436]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34436]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 6 34435]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34437]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34438]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34437]]} + {:process 1 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 7 34439]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34438]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34440]]} + {:process 1 :type :fail :f :txn :value [[:append 7 34439]]} + {:process 1 :type :invoke :f :txn :value [[:append 2 34441]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34440]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 2 34441]]} + {:process 1 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34442]]} + {:process 1 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 4 34443]]} + {:process 1 :type :fail :f :txn :value [[:append 4 34443]]} + {:process 1 :type :invoke :f :txn :value [[:append 3 34444]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34442]]} + {:process 1 :type :fail :f :txn :value [[:append 3 34444]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34445]]} + {:process 1 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 5 34446]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34445]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 1 :type :fail :f :txn :value [[:append 5 34446]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 1 :type :invoke :f :txn :value [[:append 0 34447]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34448]]} + {:process 1 :type :fail :f :txn :value [[:append 0 34447]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34448]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34449]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34449]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34450]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34450]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34451]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34451]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34452]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34452]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34453]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34453]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34454]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34454]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34455]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34455]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34456]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34456]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34457]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34457]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34458]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34458]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34459]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34459]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34460]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34460]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34461]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34461]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34462]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34462]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34463]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34463]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34464]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34464]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34465]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34465]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34466]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34466]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34467]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34467]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34468]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34468]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34469]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34469]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34470]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34470]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34471]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34471]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34472]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34472]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34473]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34473]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34474]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34474]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34475]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34475]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34476]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34476]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34477]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34477]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34478]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34478]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34479]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34479]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34480]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34480]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34481]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34481]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34482]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34482]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34483]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34483]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34484]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34484]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34485]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34485]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34486]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34486]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34487]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34487]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34488]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34488]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34489]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34489]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34490]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34490]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34491]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34491]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34492]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34492]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34493]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34493]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34494]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34494]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34495]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34495]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34496]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34496]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34497]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34497]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34498]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34498]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34499]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34499]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34500]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34500]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34501]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34501]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34502]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34502]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34503]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34503]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34504]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34504]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34505]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34505]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34506]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34506]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34507]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34507]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34508]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34508]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34509]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34509]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34510]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34510]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34511]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34511]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34512]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34512]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34513]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34513]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34514]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34514]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34515]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34515]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34516]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34516]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34517]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34517]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34518]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34518]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34519]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34519]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34520]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34520]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34521]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34521]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34522]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34522]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34523]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34523]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34524]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34524]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34525]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34525]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34526]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34526]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34527]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34527]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34528]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34528]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34529]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34529]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34530]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34530]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34531]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34531]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34532]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34532]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34533]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34533]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34534]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34534]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34535]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34535]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34536]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34536]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34537]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34537]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34538]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34538]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34539]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34539]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34540]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34540]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34541]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34541]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34542]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34542]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34543]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34543]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34544]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34544]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34545]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34545]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34546]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34546]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34547]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34547]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34548]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34548]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34549]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34549]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34550]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34550]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34551]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34551]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34552]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34552]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34553]]} + {:process 7 :type :fail :f :txn :value [[:append 6 1658]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34553]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34554]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34555]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34554]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34556]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34556]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34557]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34555]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34558]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34557]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34559]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34558]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34560]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34559]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34560]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34561]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34561]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34562]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34562]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34563]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34563]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34564]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34564]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34565]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34565]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34566]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34566]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34567]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34567]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34568]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34568]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34569]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34569]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34570]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34570]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34571]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34571]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34572]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34572]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34573]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34573]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34574]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34574]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34575]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34575]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34576]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34576]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34577]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34578]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34577]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34579]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34578]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34580]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34580]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34579]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34582]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34582]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34583]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34583]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34584]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34584]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34585]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34585]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34586]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34586]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34587]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34587]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34588]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34588]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34589]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34589]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34590]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34590]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34591]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34591]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34592]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34592]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34593]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34593]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34594]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34594]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34595]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34595]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34596]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34596]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34597]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34597]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34598]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34581]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34598]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34599]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34599]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34600]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34581]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34601]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34601]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34602]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34602]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34603]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34603]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34604]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34604]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34605]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34600]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34606]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34605]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34607]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34606]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34608]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34607]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34609]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34608]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34610]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34609]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34610]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34611]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34612]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34611]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34613]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34613]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34612]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34614]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34615]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34614]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34616]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34615]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34617]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34616]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34618]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34618]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34619]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34617]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34620]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34620]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34621]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34621]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34622]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34619]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34622]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34623]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34624]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34623]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34625]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34624]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34626]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34625]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34627]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34626]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34627]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34628]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34629]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34628]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34630]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34629]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34631]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34630]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34632]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34631]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34633]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34633]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34634]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34632]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34635]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34634]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34636]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34635]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34637]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34636]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34638]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34637]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34639]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34638]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34640]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34639]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34641]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34640]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34642]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34641]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34643]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34643]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34644]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34642]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34645]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34644]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34646]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34645]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34647]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34647]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34646]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34648]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34649]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34648]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34650]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34649]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34650]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34651]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34652]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34651]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34652]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34653]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34654]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34653]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34655]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34654]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34656]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34655]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34657]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34657]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34658]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34656]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34658]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34659]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34660]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34659]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34661]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34660]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34662]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34661]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34663]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34662]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34664]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34663]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34665]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34665]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34666]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34666]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34667]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34664]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34668]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34668]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34669]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34669]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34670]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34667]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34671]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34670]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34671]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34672]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34673]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34672]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34674]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34674]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34675]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34673]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34676]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34675]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34676]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34677]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34678]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34677]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34679]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34679]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34680]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34678]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34681]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34680]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34682]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34681]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34683]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34682]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34684]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34683]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34685]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34685]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34686]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34686]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34687]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34684]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34688]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34688]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34689]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34689]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34690]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34690]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34691]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34687]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34692]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34691]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34692]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34693]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34694]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34693]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34695]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34694]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34696]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34695]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34697]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34696]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34698]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34697]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34699]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34698]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34700]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34699]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34701]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34700]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34701]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34702]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34703]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34702]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34704]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34703]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34705]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34704]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34705]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34706]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34707]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34706]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34708]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34707]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34709]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34708]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34709]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34710]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34711]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34710]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34712]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34712]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34713]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34711]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34714]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34713]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34715]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34714]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34716]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34715]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34716]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34718]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34717]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34718]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34719]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34717]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34719]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34721]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34720]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34721]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34722]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34720]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34722]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34723]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34724]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34723]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34725]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34724]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34726]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34725]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34727]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34726]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34728]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34728]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34729]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34727]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34730]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34729]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34731]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34730]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34732]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34731]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34733]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34733]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34734]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34732]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34735]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34734]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34736]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34735]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34737]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34736]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34737]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34738]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34739]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34738]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34740]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34740]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34739]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34741]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34742]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34741]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34743]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34742]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34744]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34743]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34745]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34744]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34746]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34745]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34747]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34747]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34748]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34746]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34749]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34749]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34750]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34748]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34751]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34750]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34752]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34751]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34753]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34753]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34754]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34752]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34755]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34754]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34756]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34755]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34757]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34756]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34758]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34757]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34758]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34759]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34760]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34759]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34761]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34760]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34761]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34762]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34763]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34763]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34764]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34762]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34764]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34765]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34766]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34766]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34767]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34765]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34768]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34767]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34769]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34768]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34770]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34769]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34771]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34770]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34772]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34771]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34773]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34772]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34773]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34774]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34775]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34774]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34776]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34775]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34777]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34776]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34778]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34777]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34779]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34779]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34780]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34778]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34781]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34781]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34780]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34782]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34783]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34782]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34784]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34784]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34785]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34783]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34786]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34786]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34787]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34785]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34787]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34788]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34789]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34789]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34790]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34788]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34791]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34790]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34792]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34791]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34793]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34792]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34794]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34793]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34794]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34795]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34796]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34795]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34797]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34797]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34796]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34798]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34799]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34799]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34800]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34798]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34801]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34800]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34802]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34801]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34802]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34803]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34804]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34803]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34805]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34804]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34806]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34805]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34807]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34806]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34807]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34808]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34809]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34809]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34810]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34808]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34811]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34810]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34812]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34811]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34812]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34813]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34814]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34813]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34815]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34814]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34816]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34815]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34817]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34816]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34818]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34817]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34819]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34818]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34820]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34819]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34821]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34820]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34822]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34821]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34823]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34822]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34824]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34823]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34825]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34824]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34826]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34825]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34827]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34827]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34828]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34826]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34829]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34829]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34830]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34828]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34831]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34830]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34831]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34833]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34832]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34833]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34834]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34832]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34835]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34835]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34836]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34836]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34837]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34837]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34838]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34834]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34839]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34838]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34839]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34840]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34841]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34841]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34842]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34842]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34843]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34843]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34844]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34840]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34845]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34844]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34846]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34845]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34846]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34847]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34848]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34847]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34849]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34848]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34850]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34849]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34851]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34850]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34852]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34851]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34853]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34852]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34854]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34853]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34855]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34854]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34855]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34856]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34857]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34856]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34858]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34858]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34859]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34857]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34860]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34860]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34861]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34859]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34862]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34862]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34861]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34863]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34864]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34863]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34865]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34864]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34866]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34865]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34867]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34866]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34867]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34868]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34869]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34868]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34870]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34869]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34871]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34870]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34871]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34872]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34873]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34872]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34874]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34874]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34875]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34873]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34876]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34875]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34877]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34877]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34878]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34876]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34879]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34878]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34880]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34879]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34881]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34880]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34882]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34881]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34883]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34883]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34884]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34884]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34885]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34882]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34886]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34885]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34887]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34886]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34887]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34888]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34889]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34888]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34890]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34889]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34891]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34890]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34891]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34892]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34893]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34893]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34894]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34892]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34895]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34894]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34896]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34895]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34896]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34897]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34898]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34897]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34899]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34898]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34900]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34899]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34901]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34900]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34901]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34902]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34903]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34903]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34904]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34902]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34905]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34904]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34906]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34905]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34906]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34907]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34908]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34907]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34909]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34908]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34910]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34909]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34911]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34910]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34912]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34911]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34913]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34912]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34914]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34913]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34915]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34914]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34915]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34916]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34917]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34917]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34918]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34916]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34919]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34918]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34920]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34919]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34920]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34921]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34922]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34921]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34923]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34922]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34924]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34923]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34925]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34924]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34926]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34925]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34927]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34927]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34928]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34928]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34929]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34926]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34930]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34930]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34929]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34931]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34931]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34932]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34933]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34932]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34934]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34933]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34935]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34934]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34936]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34935]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34936]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34937]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34938]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34937]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34939]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34938]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34940]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34939]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34941]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34940]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34942]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34942]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34943]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34941]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34944]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34943]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34944]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34945]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34946]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34945]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34947]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34946]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34948]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34947]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34949]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34948]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34950]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34950]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34951]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34949]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34952]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34951]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34952]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34953]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34954]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34953]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34955]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34954]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34956]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34955]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34957]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34956]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34958]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34957]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34959]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34959]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34960]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34960]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34961]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34958]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34962]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34961]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34963]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34962]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34963]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34964]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34965]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34965]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34966]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34964]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34967]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34966]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34968]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34967]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34968]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34969]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34970]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34969]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34971]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34970]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34972]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34971]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34973]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34972]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34973]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 34974]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34975]]} + {:process 5 :type :fail :f :txn :value [[:append 7 34974]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34976]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34975]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34977]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34976]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34977]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 34978]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34979]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34979]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34980]]} + {:process 5 :type :fail :f :txn :value [[:append 2 34978]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34981]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34980]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34982]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34981]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34982]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34983]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 34984]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34983]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 34985]]} + {:process 5 :type :fail :f :txn :value [[:append 1 34984]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 34986]]} + {:process 7 :type :fail :f :txn :value [[:append 6 34985]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34987]]} + {:process 5 :type :fail :f :txn :value [[:append 6 34986]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34987]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 34989]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 34988]]} + {:process 7 :type :fail :f :txn :value [[:append 1 34989]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34990]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34990]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 34991]]} + {:process 5 :type :fail :f :txn :value [[:append 4 34988]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 34992]]} + {:process 7 :type :fail :f :txn :value [[:append 4 34991]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 34993]]} + {:process 5 :type :fail :f :txn :value [[:append 5 34992]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 34993]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 34994]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 34995]]} + {:process 5 :type :fail :f :txn :value [[:append 3 34994]]} + {:process 7 :type :fail :f :txn :value [[:append 7 34995]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 34996]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 34997]]} + {:process 7 :type :fail :f :txn :value [[:append 0 34997]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 34998]]} + {:process 5 :type :fail :f :txn :value [[:append 0 34996]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 34998]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 34999]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35000]]} + {:process 7 :type :fail :f :txn :value [[:append 3 34999]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35001]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35000]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35002]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35001]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35003]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35002]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35003]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35004]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35005]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35004]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35006]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35006]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35005]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35008]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35007]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35008]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35009]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35007]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35010]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35009]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35011]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35010]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35012]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35012]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35011]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35013]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35014]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35013]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35015]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35015]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35016]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35014]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35017]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35016]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35018]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35018]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35019]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35017]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35020]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35019]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35021]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35020]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35022]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35021]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35023]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35023]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35024]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35022]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35025]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35024]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35025]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35027]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35026]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35027]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35028]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35026]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35028]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35029]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35030]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35029]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35031]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35030]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35032]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35031]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35033]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35032]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35033]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35034]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35035]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35034]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35036]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35035]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35037]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35036]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35038]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35038]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35039]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35037]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35040]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35039]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35040]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35041]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35042]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35041]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35043]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35043]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35044]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35042]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35045]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35045]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35046]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35044]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35046]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35047]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35048]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35047]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35049]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35049]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35050]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35048]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35051]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35050]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35052]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35052]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35053]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35051]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35054]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35053]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35054]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35055]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35056]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35055]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35057]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35056]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35058]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35057]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35059]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35058]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35060]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35060]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35061]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35059]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35062]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35061]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35062]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35063]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35064]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35063]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35065]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35064]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35066]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35065]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35067]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35066]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35068]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35067]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35069]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35068]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35070]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35069]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35071]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35070]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35071]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35072]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35073]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35073]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35074]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35072]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35075]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35074]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35076]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35075]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35076]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35077]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35078]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35077]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35079]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35078]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35080]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35079]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35081]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35080]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35081]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35082]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35083]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35082]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35084]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35084]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35085]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35083]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35086]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35085]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35087]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35086]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35088]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35087]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35088]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35089]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35090]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35089]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35091]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35090]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35092]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35091]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35093]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35092]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35093]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35094]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35095]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35094]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35096]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35095]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35097]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35096]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35097]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35098]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35099]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35098]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35100]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35099]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35101]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35100]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35102]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35101]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35103]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35102]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35104]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35103]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35105]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35104]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35105]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35106]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35107]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35107]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35108]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35106]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35108]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35109]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35110]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35109]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35110]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35111]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35112]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35111]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35113]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35112]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35114]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35113]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35115]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35114]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35115]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35116]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35117]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35117]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35118]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35116]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35119]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35118]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35120]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35119]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35120]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35121]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35122]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35121]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35123]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35122]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35124]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35123]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35125]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35124]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35126]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35125]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35127]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35127]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35128]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35128]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35129]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35126]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35130]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35129]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35131]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35130]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35132]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35132]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35133]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35131]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35134]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35133]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35134]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35135]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35136]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35135]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35137]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35136]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35138]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35137]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35139]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35138]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35140]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35140]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35141]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35139]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35142]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35141]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35142]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35144]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35143]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35144]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35145]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35143]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35146]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35145]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35147]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35146]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35148]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35148]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35149]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35147]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35150]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35149]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35150]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35151]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35152]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35152]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35153]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35151]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35154]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35153]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35155]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35154]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35156]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35156]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35157]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35155]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35158]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35157]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35159]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35158]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35160]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35159]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35161]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35160]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35162]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35161]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35162]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35163]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35164]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35163]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35165]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35164]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35165]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35167]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35166]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35167]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35168]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35166]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35168]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35169]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35170]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35169]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35171]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35170]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35172]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35171]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35173]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35172]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35174]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35174]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35175]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35173]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35176]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35175]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35176]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35177]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35178]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35177]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35179]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35178]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35180]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35179]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35181]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35180]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35182]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35181]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35183]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35182]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35184]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35183]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35185]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35184]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35185]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35186]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35187]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35187]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35188]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35186]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35189]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35188]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35190]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35189]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35190]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35191]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35192]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35191]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35193]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35192]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35194]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35193]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35195]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35194]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35195]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35196]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35197]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35197]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35198]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35196]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35199]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35198]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35200]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35199]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35200]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35201]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35202]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35201]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35203]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35202]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35204]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35203]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35205]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35204]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35206]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35206]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35207]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35205]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35208]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35207]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35208]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35210]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35209]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35210]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35211]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35209]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35212]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35211]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35213]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35212]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35213]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35214]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35214]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35216]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35216]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35217]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35215]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35217]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35218]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35218]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35219]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35219]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35220]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35220]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35215]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35221]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35222]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35221]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35223]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35222]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35224]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35223]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35225]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35224]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35225]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35226]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35227]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35226]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35228]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35227]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35229]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35228]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35230]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35230]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35231]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35229]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35232]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35232]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35233]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35233]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35234]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35231]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35235]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35234]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35236]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35236]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35237]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35235]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35238]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35238]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35239]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35237]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35240]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35239]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35241]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35240]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35242]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35241]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35242]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35243]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35244]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35243]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35245]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35244]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35246]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35245]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35247]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35246]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35247]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35248]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35249]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35248]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35250]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35250]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35249]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35251]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35252]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35251]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35253]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35252]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35254]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35253]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35255]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35254]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35255]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35256]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35257]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35257]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35258]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35256]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35259]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35258]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35260]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35259]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35260]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35261]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35262]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35261]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35263]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35263]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35264]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35262]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35265]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35265]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35266]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35266]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35267]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35264]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35268]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35267]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35268]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35269]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35270]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35269]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35271]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35270]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35272]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35271]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35273]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35273]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35274]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35272]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35274]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35275]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35276]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35275]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35277]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35277]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35278]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35276]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35279]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35278]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35280]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35279]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35281]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35280]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35282]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35282]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35283]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35281]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35284]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35283]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35284]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35285]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35286]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35285]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35286]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35288]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35288]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35289]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35287]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35289]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35290]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35287]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35291]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35290]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35292]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35292]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35293]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35291]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35294]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35293]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35294]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35295]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35296]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35295]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35297]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35296]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35298]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35297]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35299]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35298]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35299]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35300]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35301]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35301]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35302]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35300]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35303]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35302]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35304]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35303]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35304]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35305]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35306]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35305]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35307]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35306]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35308]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35307]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35309]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35308]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35310]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35309]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35311]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35310]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35312]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35311]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35313]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35312]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35314]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35314]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35315]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35313]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35316]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35315]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35316]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35317]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35318]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35317]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35319]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35318]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35320]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35319]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35320]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35322]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35322]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35323]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35323]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35324]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35324]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35325]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35325]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35326]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35321]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35326]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35327]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35321]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35328]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35327]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35328]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35329]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35329]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35330]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35331]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35330]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35332]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35331]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35333]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35333]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35332]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35334]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35335]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35335]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35336]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35334]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35337]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35336]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35338]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35337]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35338]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35339]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35340]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35339]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35341]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35340]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35341]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35343]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35342]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35343]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35344]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35342]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35345]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35344]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35346]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35345]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35347]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35346]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35348]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35347]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35348]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35350]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35349]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35349]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35351]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35350]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35352]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35351]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35352]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35353]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35353]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35355]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35355]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35356]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35356]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35357]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35354]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35357]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35354]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35358]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35358]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35359]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35360]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35359]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35360]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35362]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35361]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35362]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35361]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35363]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35364]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35363]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35365]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35364]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35366]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35365]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35367]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35366]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35368]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35367]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35369]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35368]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35369]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35370]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35371]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35370]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35372]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35371]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35373]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35372]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35373]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35374]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35375]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35374]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35376]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35375]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35377]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35376]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35378]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35377]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35379]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35378]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35380]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35379]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35381]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35380]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35382]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35381]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35383]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35382]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35384]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35383]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35385]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35384]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35385]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35386]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35386]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35387]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35388]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35387]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35389]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35388]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35390]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35389]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35391]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35390]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35392]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35391]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35393]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35392]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35394]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35393]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35395]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35394]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35396]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35395]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35397]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35396]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35398]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35397]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35399]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35398]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35400]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35399]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35401]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35400]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35402]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35401]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35403]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35402]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35404]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35403]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35405]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35404]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35406]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35405]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35407]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35406]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35408]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35407]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35408]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35410]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35409]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35410]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35411]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35409]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35412]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35411]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35413]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35412]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35413]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35414]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35414]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35415]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35415]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35417]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35416]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35417]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35418]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35416]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35419]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35418]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35420]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35419]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35421]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35420]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35422]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35421]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35423]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35422]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35423]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35424]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35425]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35424]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35426]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35425]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35427]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35426]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35428]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35427]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35429]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35428]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35430]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35429]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35431]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35430]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35431]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35432]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35433]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35432]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35434]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35433]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35435]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35434]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35436]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35435]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35437]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35436]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35438]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35437]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35439]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35438]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35440]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35439]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35441]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35440]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35442]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35441]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35443]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35442]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35444]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35443]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35444]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35445]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35446]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35445]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35447]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35447]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35448]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35448]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35449]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35449]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35450]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35446]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35451]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35450]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35452]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35451]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35453]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35452]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35454]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35453]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35455]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35454]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35456]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35455]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35457]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35456]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35458]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35457]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35459]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35458]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35460]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35459]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35461]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35461]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35462]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35460]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35463]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35463]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35464]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35462]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35465]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35464]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35466]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35465]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35467]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35466]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35468]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35467]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35469]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35468]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35470]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35469]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35471]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35470]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35472]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35471]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35473]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35472]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35474]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35473]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35475]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35474]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35476]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35475]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35477]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35476]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35478]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35478]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35477]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35480]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35480]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35481]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35481]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35482]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35479]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35482]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35483]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35479]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35484]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35483]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35484]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35485]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35486]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35485]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35487]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35486]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35488]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35487]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35488]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35489]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35490]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35489]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35491]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35490]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35492]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35491]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35493]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35492]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35494]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35493]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35495]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35494]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35496]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35495]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35497]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35496]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35498]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35497]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35499]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35498]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35500]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35499]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35500]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35501]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35502]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35501]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35503]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35502]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35504]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35503]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35505]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35504]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35505]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35506]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35507]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35506]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35508]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35507]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35509]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35508]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35509]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35510]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35510]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35511]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35511]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35512]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35513]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35512]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35514]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35513]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35515]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35514]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35515]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35516]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35517]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35516]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35518]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35517]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35519]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35518]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35519]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35520]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35521]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35520]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35522]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35521]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35523]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35522]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35524]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35523]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35525]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35524]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35526]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35525]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35527]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35526]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35528]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35527]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35529]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35528]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35530]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35530]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35531]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35529]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35532]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35531]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35533]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35532]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35534]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35533]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35535]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35534]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35536]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35535]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35537]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35536]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35538]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35537]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35539]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35538]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35540]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35539]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35541]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35540]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35541]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35543]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35543]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35544]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35544]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35545]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35542]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35545]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35546]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35542]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35547]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35546]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35548]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35547]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35549]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35548]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35550]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35549]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35551]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35551]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35552]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35550]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35553]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35552]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35554]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35553]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35555]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35554]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35556]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35555]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35557]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35556]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35557]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35558]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35559]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35558]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35559]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35560]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35561]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35560]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35562]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35561]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35563]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35562]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35564]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35563]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35565]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35564]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35566]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35565]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35567]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35566]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35567]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35568]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35569]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35568]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35570]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35569]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35571]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35570]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35572]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35571]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35573]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35572]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35573]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35575]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35574]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35575]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35576]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35576]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35577]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35574]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35577]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35578]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35579]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35578]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35580]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35579]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35581]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35580]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35582]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35581]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35582]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35583]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35584]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35583]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35585]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35584]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35586]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35585]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35587]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35586]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35587]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35588]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35589]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35588]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35590]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35589]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35591]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35591]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35592]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35592]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35593]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35593]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35594]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35594]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35595]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35595]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35596]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35590]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35597]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35597]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35598]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35596]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35599]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35598]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35600]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35599]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35601]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35600]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35602]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35601]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35603]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35602]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35604]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35603]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35605]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35604]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35605]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35607]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35607]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35606]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35608]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35606]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35609]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35608]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35610]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35609]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35611]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35610]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35612]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35611]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35613]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35612]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35614]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35613]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35614]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35615]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35616]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35615]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35616]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35618]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35617]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35617]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35619]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35618]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35620]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35619]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35621]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35620]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35622]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35621]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35623]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35623]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35624]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35624]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35625]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35622]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35625]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35626]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35627]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35626]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35628]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35627]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35629]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35628]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35629]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35630]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35631]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35630]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35632]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35631]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35633]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35632]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35634]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35633]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35635]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35634]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35636]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35635]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35637]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35636]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35638]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35637]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35639]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35638]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35640]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35639]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35641]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35640]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35642]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35641]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35642]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35643]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35644]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35643]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35645]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35644]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35646]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35645]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35647]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35646]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35648]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35647]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35649]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35648]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35650]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35649]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35651]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35650]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35652]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35651]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35653]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35652]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35653]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35654]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35654]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35655]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35656]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35655]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35657]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35656]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35658]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35657]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35659]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35658]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35660]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35659]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35660]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35661]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35662]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35661]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35663]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35662]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35664]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35663]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35665]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35664]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35666]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35665]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35667]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35666]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35668]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35667]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35669]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35668]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35670]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35669]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35671]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35671]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35672]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35670]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35673]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35672]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35674]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35673]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35675]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35674]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35676]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35675]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35677]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35676]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35677]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35678]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35679]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35678]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35680]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35679]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35681]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35680]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35681]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35682]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35682]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35683]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35683]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35684]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35685]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35684]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35686]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35685]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35687]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35686]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35688]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35687]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35689]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35688]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35690]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35689]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35691]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35690]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35692]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35691]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35693]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35692]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35694]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35693]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35695]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35694]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35696]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35695]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35697]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35696]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35698]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35697]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35699]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35698]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35700]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35699]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35701]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35700]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35702]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35701]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35703]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35702]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35704]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35703]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35704]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35705]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35706]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35705]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35707]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35706]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35708]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35707]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35709]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35708]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35710]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35709]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35711]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35710]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35711]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35713]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35713]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35714]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35712]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35714]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35715]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35712]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35716]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35715]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35717]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35716]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35718]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35717]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35719]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35718]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35720]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35719]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35721]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35720]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35722]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35721]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35723]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35722]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35724]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35723]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35725]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35724]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35725]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35726]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35727]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35726]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35728]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35727]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35728]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35729]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35730]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35729]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35730]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35731]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35732]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35731]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35733]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35732]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35734]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35733]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35735]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35734]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35736]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35735]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35737]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35736]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35738]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35737]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35739]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35738]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35740]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35739]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35741]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35740]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35741]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35742]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35743]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35743]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35744]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35744]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35745]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35742]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35745]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35746]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35747]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35746]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35747]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35748]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35749]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35748]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35750]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35749]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35751]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35750]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35752]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35751]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35753]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35752]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35754]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35753]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35755]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35754]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35756]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35755]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35757]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35756]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35758]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35757]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35759]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35758]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35760]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35759]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35760]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35761]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35762]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35761]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35762]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35764]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35763]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35763]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35764]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35766]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35765]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35766]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35767]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35765]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35768]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35767]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35769]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35768]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35770]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35769]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35771]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35770]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35772]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35771]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35772]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35774]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35774]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35775]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35773]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35775]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35776]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35773]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35777]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35776]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35778]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35777]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35779]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35779]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35780]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35778]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35780]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35781]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35782]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35781]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35783]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35782]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35783]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35784]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35784]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35785]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35785]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35786]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35787]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35787]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35788]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35786]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35789]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35788]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35790]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35789]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35790]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35791]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35792]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35791]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35793]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35792]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35794]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35793]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35795]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35794]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35796]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35795]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35797]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35796]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35798]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35797]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35798]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35799]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35800]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35799]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35801]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35801]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35802]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35802]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35803]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35803]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35800]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35804]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35805]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35804]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35806]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35805]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35807]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35806]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35808]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35807]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35809]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35808]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35810]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35809]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35811]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35810]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35812]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35811]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35813]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35812]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35814]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35813]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35815]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35814]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35815]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35816]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35817]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35816]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35818]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35817]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35819]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35818]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35820]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35819]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35821]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35820]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35822]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35821]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35823]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35822]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35824]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35823]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35825]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35824]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35826]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35825]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35827]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35826]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35827]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35828]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35829]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35828]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35830]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35829]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35831]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35830]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35832]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35831]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35832]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35834]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35834]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35835]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35833]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35835]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35836]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35833]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35837]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35836]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35837]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35839]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35838]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35839]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35840]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35838]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35841]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35840]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35841]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35842]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35843]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35842]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35844]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35844]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35845]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35843]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35846]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35845]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35847]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35846]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35847]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35848]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35849]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35848]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35850]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35850]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35851]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35849]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35852]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35851]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35853]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35852]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35854]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35853]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35855]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35854]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35856]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35855]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35857]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35856]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35858]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35857]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35859]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35858]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35860]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35859]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35861]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35860]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35862]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35861]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35863]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35863]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35864]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35864]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35865]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35865]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35866]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35862]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35867]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35866]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35867]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35868]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35869]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35868]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35870]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35869]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35871]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35870]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35871]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35872]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35873]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35872]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35874]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35873]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35875]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35874]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35876]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35875]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35877]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35876]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35878]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35877]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35879]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35879]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35880]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35878]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35881]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35881]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35882]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35880]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35883]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35883]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35884]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35882]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35885]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35884]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35886]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35885]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35887]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35886]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35888]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35887]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35888]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35889]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35890]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35889]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35891]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35890]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35892]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35891]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35893]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35892]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35893]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35895]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35895]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35896]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35896]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35897]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35894]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35897]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35898]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35894]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35899]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35898]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35900]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35899]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35901]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35900]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35901]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35902]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35903]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35902]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35904]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35903]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35905]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35904]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35905]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35906]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35907]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35906]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35908]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35907]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35909]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35908]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35909]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35910]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35911]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35910]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35912]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35911]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35913]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35912]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35913]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35914]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35915]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35914]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35916]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35915]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35917]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35916]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35917]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35918]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35919]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35918]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35920]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35919]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35921]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35920]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35921]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35922]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35923]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35922]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35924]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35923]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35924]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35926]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35926]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35927]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35927]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35925]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35928]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35928]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35929]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35925]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35930]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35929]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35931]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35930]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35932]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35931]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35933]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35932]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35934]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35933]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35935]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35934]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35936]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35935]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35937]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35936]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35938]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35937]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35938]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35940]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35939]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35940]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35939]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35941]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35942]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35941]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35943]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35942]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35944]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35943]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35945]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35944]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35946]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35945]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35947]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35946]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35947]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35948]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35949]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35948]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35950]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35949]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35951]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35950]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35952]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35951]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35953]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35952]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35954]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35953]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35955]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35954]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35955]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35956]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35957]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35957]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35958]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35956]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35959]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35958]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35960]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35960]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35961]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35961]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35962]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35959]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35962]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35963]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35964]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35963]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35965]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35964]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35966]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35965]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35967]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35966]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35968]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35967]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35969]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35968]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35970]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35969]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35971]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35970]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35972]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35971]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35973]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35972]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35974]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35973]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35975]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35974]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35976]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35975]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 35977]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35976]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35978]]} + {:process 7 :type :fail :f :txn :value [[:append 0 35977]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35979]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35978]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35979]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 35980]]} + {:process 5 :type :fail :f :txn :value [[:append 6 35980]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35981]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35981]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 35982]]} + {:process 5 :type :fail :f :txn :value [[:append 5 35982]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35983]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 35984]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35983]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 35985]]} + {:process 7 :type :fail :f :txn :value [[:append 3 35984]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35986]]} + {:process 5 :type :fail :f :txn :value [[:append 0 35985]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35987]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35986]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 35988]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35987]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 35988]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35989]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 35990]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35989]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 35991]]} + {:process 5 :type :fail :f :txn :value [[:append 7 35990]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 35992]]} + {:process 7 :type :fail :f :txn :value [[:append 1 35991]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 35993]]} + {:process 5 :type :fail :f :txn :value [[:append 4 35992]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 35993]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 35994]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 35995]]} + {:process 5 :type :fail :f :txn :value [[:append 2 35994]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 35996]]} + {:process 7 :type :fail :f :txn :value [[:append 4 35995]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 35997]]} + {:process 5 :type :fail :f :txn :value [[:append 3 35996]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 35998]]} + {:process 7 :type :fail :f :txn :value [[:append 5 35997]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 35999]]} + {:process 5 :type :fail :f :txn :value [[:append 1 35998]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36000]]} + {:process 7 :type :fail :f :txn :value [[:append 7 35999]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36001]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36000]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36002]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36001]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36003]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36002]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36004]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36003]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36005]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36004]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36005]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36006]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36007]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36006]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36008]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36007]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36009]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36008]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36010]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36009]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36010]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36011]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36012]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36011]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36013]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36012]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36014]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36013]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36015]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36014]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36016]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36015]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36016]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36018]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36018]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36019]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36017]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36019]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36020]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36017]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36021]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36021]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36022]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36020]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36023]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36022]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36024]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36023]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36025]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36024]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36026]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36025]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36027]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36026]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36028]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36027]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36029]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36028]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36030]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36029]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36031]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36030]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36032]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36031]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36033]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36032]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36034]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36033]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36035]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36034]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36036]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36035]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36037]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36036]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36038]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36037]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36038]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36039]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36039]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36041]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36041]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36042]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36040]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36042]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36043]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36040]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36044]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36043]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36045]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36044]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36046]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36045]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36047]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36046]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36048]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36047]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36049]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36048]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36050]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36049]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36051]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36050]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36052]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36051]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36053]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36052]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36054]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36053]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36054]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36056]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36055]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36056]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36055]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36058]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36057]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36058]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36059]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36059]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36060]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36057]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36060]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36061]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36062]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36062]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36063]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36061]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36063]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36064]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36065]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36064]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36066]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36065]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36067]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36066]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36067]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36069]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36069]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36070]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36068]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36070]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36071]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36068]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36072]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36071]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36073]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36072]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36074]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36073]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36075]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36074]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36076]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36075]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36077]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36076]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36078]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36077]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36079]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36078]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36080]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36079]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36081]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36080]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36082]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36081]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36083]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36082]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36084]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36083]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36085]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36084]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36086]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36085]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36086]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36088]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36087]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36088]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36087]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36089]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36090]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36090]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36091]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36091]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36092]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36089]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36093]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36093]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36094]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36092]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36095]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36095]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36094]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36097]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36097]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36098]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36098]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36096]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36099]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36096]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36100]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36099]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36101]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36100]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36102]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36101]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36103]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36102]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36104]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36103]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36105]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36104]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36106]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36105]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36107]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36106]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36108]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36107]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36109]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36108]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36109]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36110]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36111]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36110]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36112]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36111]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36113]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36112]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36114]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36113]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36114]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36115]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36116]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36115]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36117]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36116]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36117]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36119]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36118]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36119]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36120]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36118]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36121]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36120]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36122]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36121]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36123]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36122]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36124]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36123]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36125]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36125]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36124]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36126]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36127]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36126]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36128]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36128]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36129]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36127]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36130]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36129]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36130]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36131]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36132]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36131]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36133]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36132]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36134]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36133]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36135]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36134]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36136]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36136]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36137]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36135]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36138]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36137]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36139]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36138]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36140]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36139]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36141]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36140]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36142]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36141]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36143]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36142]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36144]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36143]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36145]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36144]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36146]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36145]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36147]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36147]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36148]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36148]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36149]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36146]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36150]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36149]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36151]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36150]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36152]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36151]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36153]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36152]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36154]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36153]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36155]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36154]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36156]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36155]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36157]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36156]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36157]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36159]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36159]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36160]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36160]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36161]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36158]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36161]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36162]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36158]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36163]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36162]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36164]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36163]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36165]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36164]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36165]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36166]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36167]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36166]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36168]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36167]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36169]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36168]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36169]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36170]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36171]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36170]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36172]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36172]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36173]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36171]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36174]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36173]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36175]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36174]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36176]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36175]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36177]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36176]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36178]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36177]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36179]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36178]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36180]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36179]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36181]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36180]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36182]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36181]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36183]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36182]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36183]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36184]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36185]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36184]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36186]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36185]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36187]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36186]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36188]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36187]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36189]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36188]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36190]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36189]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36190]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36192]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36192]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36193]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36193]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36194]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36191]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36194]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36195]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36191]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36196]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36196]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36197]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36195]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36198]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36198]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36199]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36197]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36200]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36199]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36201]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36200]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36202]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36201]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36203]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36202]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36204]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36203]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36204]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36206]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36205]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36206]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36205]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36208]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36207]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36208]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36209]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36207]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36210]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36209]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36211]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36210]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36212]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36211]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36213]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36212]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36213]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36214]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36215]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36214]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36216]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36215]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36217]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36216]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36217]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36218]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36219]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36218]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36220]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36220]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36221]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36219]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36222]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36221]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36223]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36223]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36224]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36224]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36225]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36225]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36226]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36222]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36226]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36227]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36228]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36227]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36228]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36229]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36230]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36229]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36231]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36230]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36232]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36231]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36232]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36234]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36233]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36234]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36233]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36235]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36236]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36235]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36237]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36236]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36238]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36237]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36239]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36238]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36240]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36240]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36239]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36241]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36242]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36241]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36243]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36243]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36244]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36242]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36245]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36244]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36246]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36245]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36246]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36248]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36247]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36248]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36249]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36247]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36250]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36249]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36251]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36250]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36251]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36252]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36252]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36253]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36254]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36253]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36254]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36255]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36256]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36255]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36257]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36256]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36258]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36257]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36259]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36258]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36259]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36260]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36261]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36260]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36262]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36261]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36263]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36262]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36263]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36264]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36265]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36264]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36266]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36265]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36267]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36266]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36268]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36267]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36269]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36268]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36270]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36269]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36271]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36270]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36272]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36271]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36273]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36273]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36274]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36274]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36275]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36272]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36276]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36275]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36277]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36276]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36277]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36278]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36278]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36280]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36280]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36281]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36281]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36282]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36279]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36282]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36279]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36283]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36284]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36283]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36285]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36284]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36286]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36285]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36287]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36286]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36287]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36288]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36289]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36288]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36290]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36289]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36291]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36290]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36291]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36292]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36293]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36292]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36294]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36293]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36295]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36294]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36295]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36297]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36296]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36297]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36298]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36298]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36299]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36296]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36300]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36300]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36301]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36299]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36302]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36301]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36303]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36302]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36304]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36303]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36305]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36304]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36306]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36305]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36307]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36306]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36307]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36309]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36309]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36310]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36310]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36311]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36308]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36311]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36312]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36308]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36313]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36312]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36314]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36313]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36315]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36314]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36316]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36315]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36317]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36316]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36318]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36317]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36319]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36318]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36320]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36319]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36321]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36321]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36322]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36320]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36323]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36322]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36324]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36323]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36325]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36324]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36326]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36325]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36327]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36326]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36328]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36327]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36329]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36328]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36330]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36329]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36331]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36330]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36332]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36331]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36333]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36332]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36334]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36333]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36335]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36334]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36336]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36335]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36337]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36336]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36338]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36337]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36339]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36339]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36340]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36340]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36341]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36341]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36342]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36338]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36343]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36342]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36343]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36344]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36345]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36344]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36346]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36346]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36347]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36345]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36348]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36347]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36349]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36348]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36350]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36349]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36351]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36350]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36352]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36351]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36353]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36352]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36354]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36353]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36354]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36355]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36356]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36355]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36357]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36356]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36358]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36357]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36359]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36358]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36359]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36360]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36361]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36360]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36362]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36361]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36363]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36362]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36364]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36363]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36365]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36364]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36366]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36365]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36367]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36366]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36368]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36367]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36369]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36368]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36370]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36369]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36370]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36372]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36371]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36372]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36373]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36371]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36374]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36373]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36375]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36374]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36376]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36375]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36377]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36376]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36378]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36377]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36378]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36379]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36380]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36379]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36381]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36380]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36382]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36381]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36383]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36382]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36384]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36383]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36385]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36384]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36386]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36385]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36387]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36386]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36388]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36387]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36389]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36388]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36390]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36389]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36391]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36390]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36392]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36391]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36393]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36392]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36394]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36393]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36395]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36394]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36396]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36396]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36397]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36395]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36398]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36397]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36398]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36400]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36400]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36401]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36401]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36402]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36399]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36402]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36403]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36399]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36404]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36403]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36405]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36404]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36406]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36405]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36407]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36406]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36407]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36408]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36409]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36408]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36410]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36409]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36411]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36411]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36410]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36412]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36413]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36412]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36414]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36413]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36415]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36414]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36416]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36415]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36417]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36416]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36418]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36417]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36419]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36419]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36420]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36418]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36420]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36421]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36422]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36421]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36423]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36422]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36424]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36423]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36425]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36424]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36426]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36425]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36427]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36426]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36428]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36427]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36428]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36430]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36430]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36431]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36429]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36431]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36432]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36429]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36433]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36432]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36434]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36433]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36435]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36434]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36435]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36436]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36437]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36436]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36438]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36437]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36439]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36438]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36440]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36439]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36441]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36440]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36442]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36441]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36443]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36442]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36443]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36445]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36444]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36445]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36446]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36444]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36447]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36446]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36447]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36448]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36449]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36448]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36450]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36449]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36451]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36450]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36452]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36451]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36453]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36452]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36454]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36453]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36455]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36454]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36456]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36455]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36457]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36456]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36458]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36457]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36459]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36459]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36460]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36460]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36461]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36461]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36462]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36458]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36463]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36462]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36464]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36463]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36465]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36464]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36465]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36466]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36467]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36466]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36467]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36468]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36469]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36468]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36470]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36469]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36471]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36470]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36472]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36471]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36473]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36472]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36474]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36473]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36475]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36474]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36476]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36475]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36477]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36476]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36478]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36477]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36479]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36478]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36480]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36479]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36481]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36480]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36482]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36481]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36483]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36482]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36484]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36483]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36485]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36484]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36485]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36486]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36487]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36486]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36488]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36487]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36489]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36488]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36489]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36490]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36490]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36491]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36491]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36492]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36492]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36493]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36493]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36494]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36494]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36495]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36495]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36496]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36497]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36496]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36498]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36497]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36499]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36498]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36500]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36499]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36501]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36500]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36502]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36502]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36503]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36503]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36504]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36504]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36505]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36505]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36506]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36506]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36507]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36501]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36508]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36507]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36509]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36508]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36510]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36510]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36511]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36509]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36511]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36512]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36513]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36512]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36514]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36513]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36515]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36514]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36515]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36516]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36517]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36516]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36518]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36517]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36519]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36518]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36520]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36519]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36521]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36520]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36522]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36521]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36523]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36522]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36524]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36524]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36525]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36523]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36526]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36525]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36527]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36526]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36528]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36527]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36529]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36528]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36529]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36530]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36530]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36531]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36531]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36532]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36533]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36532]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36534]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36534]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36535]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36533]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36536]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36535]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36537]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36536]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36538]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36537]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36539]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36538]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36540]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36539]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36541]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36540]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36542]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36541]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36543]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36542]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36544]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36543]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36545]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36544]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36546]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36545]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36547]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36546]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36548]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36547]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36549]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36548]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36550]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36549]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36550]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36552]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36551]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36551]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36553]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36552]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36554]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36554]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36555]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36553]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36556]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36556]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36557]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36555]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36558]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36558]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36559]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36557]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36560]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36559]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36560]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36562]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36562]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36563]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36563]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36564]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36561]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36564]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36565]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36561]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36566]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36565]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36567]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36566]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36568]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36567]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36568]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36569]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36570]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36569]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36570]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36571]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36572]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36571]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36573]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36572]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36573]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36574]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36575]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36574]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36576]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36575]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36577]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36576]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36577]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36578]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36579]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36578]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36580]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36580]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36581]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36579]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36581]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36582]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36583]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36582]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36584]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36583]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36585]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36584]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36586]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36585]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36587]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36586]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36588]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36587]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36589]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36588]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36590]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36589]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36591]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36590]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36591]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36593]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36593]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36594]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36594]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36595]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36592]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36595]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36596]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36592]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36597]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36596]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36597]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36598]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36599]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36598]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36600]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36599]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36601]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36601]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36602]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36600]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36602]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36603]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36604]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36603]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36604]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36606]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36605]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36606]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36607]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36605]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36608]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36607]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36609]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36608]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36610]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36609]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36611]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36610]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36611]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36612]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36613]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36612]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36614]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36613]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36615]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36614]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36615]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36616]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36617]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36616]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36618]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36617]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36619]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36618]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36619]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36620]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36621]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36620]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36622]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36622]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36623]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36623]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36624]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36621]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36624]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36625]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36626]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36625]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36627]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36626]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36628]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36627]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36629]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36628]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36630]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36629]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36631]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36630]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36632]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36631]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36632]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36633]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36634]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36633]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36635]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36634]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36636]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36635]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36637]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36636]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36638]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36638]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36637]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36639]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36640]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36640]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36641]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36639]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36641]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36642]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36643]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36642]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36644]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36643]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36645]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36644]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36645]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36646]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36647]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36646]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36648]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36647]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36649]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36648]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36649]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36650]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36651]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36650]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36652]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36651]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36652]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36654]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36653]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36654]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36655]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36653]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36656]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36655]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36657]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36656]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36658]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36657]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36659]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36658]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36660]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36659]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36661]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36660]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36662]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36661]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36663]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36662]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36664]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36663]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36665]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36664]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36666]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36665]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36667]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36666]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36668]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36667]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36668]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36669]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36670]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36669]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36671]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36670]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36672]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36671]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36673]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36672]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36674]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36673]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36675]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36674]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36676]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36675]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36677]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36676]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36678]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36678]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36679]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36677]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36680]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36679]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36681]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36680]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36681]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36683]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36683]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36684]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36684]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36685]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36682]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36685]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36686]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36686]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36687]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36682]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36688]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36688]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36689]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36687]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36690]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36690]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36691]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36689]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36692]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36692]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36693]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36691]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36694]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36694]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36695]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36693]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36695]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36696]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36697]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36696]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36698]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36697]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36699]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36698]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36699]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36700]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36701]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36700]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36702]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36702]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36703]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36701]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36704]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36703]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36705]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36704]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36706]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36705]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36707]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36706]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36708]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36707]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36709]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36708]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36710]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36709]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36711]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36710]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36712]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36711]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36713]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36712]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36714]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36713]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36715]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36714]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36715]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36717]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36717]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36718]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36718]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36719]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36719]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36716]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36720]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36720]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36721]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36721]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36722]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36716]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36723]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36722]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36724]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36723]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36725]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36724]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36725]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36726]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36727]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36726]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36728]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36727]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36729]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36728]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36730]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36729]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36731]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36730]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36732]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36731]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36733]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36732]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36734]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36733]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36735]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36734]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36736]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36735]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36737]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36736]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36738]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36737]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36739]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36738]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36740]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36739]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36741]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36740]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36741]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36742]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36742]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36743]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36743]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36744]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36744]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36745]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36746]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36745]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36746]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36747]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36748]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36747]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36749]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36748]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36750]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36749]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36750]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36751]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36751]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36752]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36753]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36753]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36754]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36752]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36754]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36755]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36755]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36756]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36756]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36757]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36757]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36758]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36759]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36759]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36760]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36758]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36761]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36760]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36762]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36761]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36763]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36762]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36764]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36764]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36765]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36763]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36766]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36765]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36767]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36766]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36768]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36767]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36768]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36769]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36770]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36769]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36771]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36770]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36772]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36771]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36773]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36772]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36774]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36773]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36775]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36774]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36776]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36775]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36777]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36776]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36778]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36777]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36779]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36778]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36780]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36779]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36781]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36780]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36782]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36781]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36783]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36782]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36784]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36783]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36784]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36785]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36786]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36785]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36787]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36786]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36787]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36788]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36788]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36789]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36790]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36789]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36791]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36790]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36792]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36791]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36793]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36792]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36794]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36793]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36795]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36794]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36796]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36795]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36797]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36796]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36798]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36797]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36798]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36800]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36799]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36799]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36801]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36800]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36802]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36801]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36803]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36802]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36804]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36803]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36805]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36804]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36806]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36805]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36807]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36806]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36808]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36807]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36809]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36809]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36810]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36808]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36811]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36810]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36812]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36812]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36813]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36811]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36814]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36813]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36815]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36814]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36816]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36815]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36817]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36816]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36818]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36817]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36819]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36818]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36819]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36821]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36821]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36822]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36822]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36823]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36820]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36823]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36824]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36824]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36820]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36825]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36826]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36825]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36827]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36826]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36828]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36827]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36829]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36828]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36830]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36829]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36831]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36831]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36832]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36830]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36833]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36832]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36834]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36833]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36835]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36834]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36836]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36835]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36837]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36836]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36838]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36837]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36839]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36838]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36839]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36840]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36841]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36840]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36842]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36841]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36843]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36842]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36843]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36844]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36845]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36844]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36846]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36845]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36847]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36846]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36847]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36848]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36849]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36848]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36850]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36849]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36851]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36850]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36851]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36852]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36852]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36854]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36854]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36855]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36853]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36855]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36856]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36856]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36853]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36857]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36858]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36857]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36859]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36858]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36860]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36859]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36860]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36861]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36862]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36861]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36863]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36862]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36864]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36863]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36865]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36865]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36864]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36866]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36867]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36866]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36867]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36868]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36869]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36868]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36870]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36869]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36871]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36870]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36872]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36871]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36873]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36872]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36874]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36873]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36875]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36875]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36876]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36874]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36876]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36877]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36878]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36877]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36878]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36879]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36880]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36879]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36881]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36880]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36882]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36881]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36883]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36882]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36884]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36884]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36885]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36885]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36886]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36886]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36883]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36887]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36888]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36887]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36889]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36888]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36890]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36889]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36891]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36890]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36892]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36891]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36893]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36892]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36894]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36893]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36895]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36894]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36895]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36896]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36897]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36896]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36898]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36897]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36899]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36898]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36899]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36900]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36901]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36900]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36902]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36901]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36903]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36902]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36904]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36904]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36905]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36903]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36906]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36905]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36907]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36907]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36908]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36906]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36909]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36908]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36909]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36910]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36911]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36910]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36912]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36911]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36913]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36912]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36914]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36913]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36915]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36914]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36916]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36915]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36916]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36918]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36918]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36919]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36919]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36920]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36917]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36920]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36921]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36917]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36922]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36921]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36923]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36922]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36923]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36924]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36925]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36924]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36926]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36925]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36927]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36926]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36928]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36927]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36929]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36928]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36929]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36930]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36931]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36930]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36932]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36931]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36933]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36932]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36933]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36934]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36935]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36934]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36936]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36935]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36937]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36936]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36938]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36937]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36939]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36938]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36940]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36939]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36941]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36940]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36941]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36942]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36943]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36942]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36944]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36943]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36945]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36944]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36945]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36946]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36947]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36946]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36948]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36947]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36948]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36950]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36949]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36950]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36951]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36951]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36952]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36949]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36953]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36952]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36954]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36953]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36955]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36954]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36955]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36956]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36957]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36956]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36958]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36957]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36959]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36958]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36960]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36959]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36961]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36960]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36962]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36961]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36963]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36962]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36963]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36964]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36965]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36964]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36966]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36965]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36967]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36966]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36967]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36968]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36969]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36968]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36970]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36969]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36971]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36970]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36972]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36971]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36973]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36973]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36974]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36972]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36975]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36975]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36976]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36974]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 36977]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36976]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36978]]} + {:process 7 :type :fail :f :txn :value [[:append 4 36977]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36979]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36978]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 36980]]} + {:process 5 :type :fail :f :txn :value [[:append 6 36980]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36981]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36979]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 36982]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36981]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 36983]]} + {:process 7 :type :fail :f :txn :value [[:append 7 36982]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36984]]} + {:process 5 :type :fail :f :txn :value [[:append 5 36983]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36985]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36984]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36985]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 36986]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 36987]]} + {:process 7 :type :fail :f :txn :value [[:append 2 36986]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36988]]} + {:process 5 :type :fail :f :txn :value [[:append 0 36987]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36989]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36988]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 36990]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36989]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 36991]]} + {:process 7 :type :fail :f :txn :value [[:append 5 36990]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 36992]]} + {:process 5 :type :fail :f :txn :value [[:append 7 36991]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 36993]]} + {:process 7 :type :fail :f :txn :value [[:append 6 36992]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 36993]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 36994]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 36995]]} + {:process 7 :type :fail :f :txn :value [[:append 0 36994]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 36996]]} + {:process 5 :type :fail :f :txn :value [[:append 2 36995]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 36997]]} + {:process 7 :type :fail :f :txn :value [[:append 1 36996]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 36998]]} + {:process 5 :type :fail :f :txn :value [[:append 3 36997]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 36999]]} + {:process 7 :type :fail :f :txn :value [[:append 3 36998]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37000]]} + {:process 5 :type :fail :f :txn :value [[:append 1 36999]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37001]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37001]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37000]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37002]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37003]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37002]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37004]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37003]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37005]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37004]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37006]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37005]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37007]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37006]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37008]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37007]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37009]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37008]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37010]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37010]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37009]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37011]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37011]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37012]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37012]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37013]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37014]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37013]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37015]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37014]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37016]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37015]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37017]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37016]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37018]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37018]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37019]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37017]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37020]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37019]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37021]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37020]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37022]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37021]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37023]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37022]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37024]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37023]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37025]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37024]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37026]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37025]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37027]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37026]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37027]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37028]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37029]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37028]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37030]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37029]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37031]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37030]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37031]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37032]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37033]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37032]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37034]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37033]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37035]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37034]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37036]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37036]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37037]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37035]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37038]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37037]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37039]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37038]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37040]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37039]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37041]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37040]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37041]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37042]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37042]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37043]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37043]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37044]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37045]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37044]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37046]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37046]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37047]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37045]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37048]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37047]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37049]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37048]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37050]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37049]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37050]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37052]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37051]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37052]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37053]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37051]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37054]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37053]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37055]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37054]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37056]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37055]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37057]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37056]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37058]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37057]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37059]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37058]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37059]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37060]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37061]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37060]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37062]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37061]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37063]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37062]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37064]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37063]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37065]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37064]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37066]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37065]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37067]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37066]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37067]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37068]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37069]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37068]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37070]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37070]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37071]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37069]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37072]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37071]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37073]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37072]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37073]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37074]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37074]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37075]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37075]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37076]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37077]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37076]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37078]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37077]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37079]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37078]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37080]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37079]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37080]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37081]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37082]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37081]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37083]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37082]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37084]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37083]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37085]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37084]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37086]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37085]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37087]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37086]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37087]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37088]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37089]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37088]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37090]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37089]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37091]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37090]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37091]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37092]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37093]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37092]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37094]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37094]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37095]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37093]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37096]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37095]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37097]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37096]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37098]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37097]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37099]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37098]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37100]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37099]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37101]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37100]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37102]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37101]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37103]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37102]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37104]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37103]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37105]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37104]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37105]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37107]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37107]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37108]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37108]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37109]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37106]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37109]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37110]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37106]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37111]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37110]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37111]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37112]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37113]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37112]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37114]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37114]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37115]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37113]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37116]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37115]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37117]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37116]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37118]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37117]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37119]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37118]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37120]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37119]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37121]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37120]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37122]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37121]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37123]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37122]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37124]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37123]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37125]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37124]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37125]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37126]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37127]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37126]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37128]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37127]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37129]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37128]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37130]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37129]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37130]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37131]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37132]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37131]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37133]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37132]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37133]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37134]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37135]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37134]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37136]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37135]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37137]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37136]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37137]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37139]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37138]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37139]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37140]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37140]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37141]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37138]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37142]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37141]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37143]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37142]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37144]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37143]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37145]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37144]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37146]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37145]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37147]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37146]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37148]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37147]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37148]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37149]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37149]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37150]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37151]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37150]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37152]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37151]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37153]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37152]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37153]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37154]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37155]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37154]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37156]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37155]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37157]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37156]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37157]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37158]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37159]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37158]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37160]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37159]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37161]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37160]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37161]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37162]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37163]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37162]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37164]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37164]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37165]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37163]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37166]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37165]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37167]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37166]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37168]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37167]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37169]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37168]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37169]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37171]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37171]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37172]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37172]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37173]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37170]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37173]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37174]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37170]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37175]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37174]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37176]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37175]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37177]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37176]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37177]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37178]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37179]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37178]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37180]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37179]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37181]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37180]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37181]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37182]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37183]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37182]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37184]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37184]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37185]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37183]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37186]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37185]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37187]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37186]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37188]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37187]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37189]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37188]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37190]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37189]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37191]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37190]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37192]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37191]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37193]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37192]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37194]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37193]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37195]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37194]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37196]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37195]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37197]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37196]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37198]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37197]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37199]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37198]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37200]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37199]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37201]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37200]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37202]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37201]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37203]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37203]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37204]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37204]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37205]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37202]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37205]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37206]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37207]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37206]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37208]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37207]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37209]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37208]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37209]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37210]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37211]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37210]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37212]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37211]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37213]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37212]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37214]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37213]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37215]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37214]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37216]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37215]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37217]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37216]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37217]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37218]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37219]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37218]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37220]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37219]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37221]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37220]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37221]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37222]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37223]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37222]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37224]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37223]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37225]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37224]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37225]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37226]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37227]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37226]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37228]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37227]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37229]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37228]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37229]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37231]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37230]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37231]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37232]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37230]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37233]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37232]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37233]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37234]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37234]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37235]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37235]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37236]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37237]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37236]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37238]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37237]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37239]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37238]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37240]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37239]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37241]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37240]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37242]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37241]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37243]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37242]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37244]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37243]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37245]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37244]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37246]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37245]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37247]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37246]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37247]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37248]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37249]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37248]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37250]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37249]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37251]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37250]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37252]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37251]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37252]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37253]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37254]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37253]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37255]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37255]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37254]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37256]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37257]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37256]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37258]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37257]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37259]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37258]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37259]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37260]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37261]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37260]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37262]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37261]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37263]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37262]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37263]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37265]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37265]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37266]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37264]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37266]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37267]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37264]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37268]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37267]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37269]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37268]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37269]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37270]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37271]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37270]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37272]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37271]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37273]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37272]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37274]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37273]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37274]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37275]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37276]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37275]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37277]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37276]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37278]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37277]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37279]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37278]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37280]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37280]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37281]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37279]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37282]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37281]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37283]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37282]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37283]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37284]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37285]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37284]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37286]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37285]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37287]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37286]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37288]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37287]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37289]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37288]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37290]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37289]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37291]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37290]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37291]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37292]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37292]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37294]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37294]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37295]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37295]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37296]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37293]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37296]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37293]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37297]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37298]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37297]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37299]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37298]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37300]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37299]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37301]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37300]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37302]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37301]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37303]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37303]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37304]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37302]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37305]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37304]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37306]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37305]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37307]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37306]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37307]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37308]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37309]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37308]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37310]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37309]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37311]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37310]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37311]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37312]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37313]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37312]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37314]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37313]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37315]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37314]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37315]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37316]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37317]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37316]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37318]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37317]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37319]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37318]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37319]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37320]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37320]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37321]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37322]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37321]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37323]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37322]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37324]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37323]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37325]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37324]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37326]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37325]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37327]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37327]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37328]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37326]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37329]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37328]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37329]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37330]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37331]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37331]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37332]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37330]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37333]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37332]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37333]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37334]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37335]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37335]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37336]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37334]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37337]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37336]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37338]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37337]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37339]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37338]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37340]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37339]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37341]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37340]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37341]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37342]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37343]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37342]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37344]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37343]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37345]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37344]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37345]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37346]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37347]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37346]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37348]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37347]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37349]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37348]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37349]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37350]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37351]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37350]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37352]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37352]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37353]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37351]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37354]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37353]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37355]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37355]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37356]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37354]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37357]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37356]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37358]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37358]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37359]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37357]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37359]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37361]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37361]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37362]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37360]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37362]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37363]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37360]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37364]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37363]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37365]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37364]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37366]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37365]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37367]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37366]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37368]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37367]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37368]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37369]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37370]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37369]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37371]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37371]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37372]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37370]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37373]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37372]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37374]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37373]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37375]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37375]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37376]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37374]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37377]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37377]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37378]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37376]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37379]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37378]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37379]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37380]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37381]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37380]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37382]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37381]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37383]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37382]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37384]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37383]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37385]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37384]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37386]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37385]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37387]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37386]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37388]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37387]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37389]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37388]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37390]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37389]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37390]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37392]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37392]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37393]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37393]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37394]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37391]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37394]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37395]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37391]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37396]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37395]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37397]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37396]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37398]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37398]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37399]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37397]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37400]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37399]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37401]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37400]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37401]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37402]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37403]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37402]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37404]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37403]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37405]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37404]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37406]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37405]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37407]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37406]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37408]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37407]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37409]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37408]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37409]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37410]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37411]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37410]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37412]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37411]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37413]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37412]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37414]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37413]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37415]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37414]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37416]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37415]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37417]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37416]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37417]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37418]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37419]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37418]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37420]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37419]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37420]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37422]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37422]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37423]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37421]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37423]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37424]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37421]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37425]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37424]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37426]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37425]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37427]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37426]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37427]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37429]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37429]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37430]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37430]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37431]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37428]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37431]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37432]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37428]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37433]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37432]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37434]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37433]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37435]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37434]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37436]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37435]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37437]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37436]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37437]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37438]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37439]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37438]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37440]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37439]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37441]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37440]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37442]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37441]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37443]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37442]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37444]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37443]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37445]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37444]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37446]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37445]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37447]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37446]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37448]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37447]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37449]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37449]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37450]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37448]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37451]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37450]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37452]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37451]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37453]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37452]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37454]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37453]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37455]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37454]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37456]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37455]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37457]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37456]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37457]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37458]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37459]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37458]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37460]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37459]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37461]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37460]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37461]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37462]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37463]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37462]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37464]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37463]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37465]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37464]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37465]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37466]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37467]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37466]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37468]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37467]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37469]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37468]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37469]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37470]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37471]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37470]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37472]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37471]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37473]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37473]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37474]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37472]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37475]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37474]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37476]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37475]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37477]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37476]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37477]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37478]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37478]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37479]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37479]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37480]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37481]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37480]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37482]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37481]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37483]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37482]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37484]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37483]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37485]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37484]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37486]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37485]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37487]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37486]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37488]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37487]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37488]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37490]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37489]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37490]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37491]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37489]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37491]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37492]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37493]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37492]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37493]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37494]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37495]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37494]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37496]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37495]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37497]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37496]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37498]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37497]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37499]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37498]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37500]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37499]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37501]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37500]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37502]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37501]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37503]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37502]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37504]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37504]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37503]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37505]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37505]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37506]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37507]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37506]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37508]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37507]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37509]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37508]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37509]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37510]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37511]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37510]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37512]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37511]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37513]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37512]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37514]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37513]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37515]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37514]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37516]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37515]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37517]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37516]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37518]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37517]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37519]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37518]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37520]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37519]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37521]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37520]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37522]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37521]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37523]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37522]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37524]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37523]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37525]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37524]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37526]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37525]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37527]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37526]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37528]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37527]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37529]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37529]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37530]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37528]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37531]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37530]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37532]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37531]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37533]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37532]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37533]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37535]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37535]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37536]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37536]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37534]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37537]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37534]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37538]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37537]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37539]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37538]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37539]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37540]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37541]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37540]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37542]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37541]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37543]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37542]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37544]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37543]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37544]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37545]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37546]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37545]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37547]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37546]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37548]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37547]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37548]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37549]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37550]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37549]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37551]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37550]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37552]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37551]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37553]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37553]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37554]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37552]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37555]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37554]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37556]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37555]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37557]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37556]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37558]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37557]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37559]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37558]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37560]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37559]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37561]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37560]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37562]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37561]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37563]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37563]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37564]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37564]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37565]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37562]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37566]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37565]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37567]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37566]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37568]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37567]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37568]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37569]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37570]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37569]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37571]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37570]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37572]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37571]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37573]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37572]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37574]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37573]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37575]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37575]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37576]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37574]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37577]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37576]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37578]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37577]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37579]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37578]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37579]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37580]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37581]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37580]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37582]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37581]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37583]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37582]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37584]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37583]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37585]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37584]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37586]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37585]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37587]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37586]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37587]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37588]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37589]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37588]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37590]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37589]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37591]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37590]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37591]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37592]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37593]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37592]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37594]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37593]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37594]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37596]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37596]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37597]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37597]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37598]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37595]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37598]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37599]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37599]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37600]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37595]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37601]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37600]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37602]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37601]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37603]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37602]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37604]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37603]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37605]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37605]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37604]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37606]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37607]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37606]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37608]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37607]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37609]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37608]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37610]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37609]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37611]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37610]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37612]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37611]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37613]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37612]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37614]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37613]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37615]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37614]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37616]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37615]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37616]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37618]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37617]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37618]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37619]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37617]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37620]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37619]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37621]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37620]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37621]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37622]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37623]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37622]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37624]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37623]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37624]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37626]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37625]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37626]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37627]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37627]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37628]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37625]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37629]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37628]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37630]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37629]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37631]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37630]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37632]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37631]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37633]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37632]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37634]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37633]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37635]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37634]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37635]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37636]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37637]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37636]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37638]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37637]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37639]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37638]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37640]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37639]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37640]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37641]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37642]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37641]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37643]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37642]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37644]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37643]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37645]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37644]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37646]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37645]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37647]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37646]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37648]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37647]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37649]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37648]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37650]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37649]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37651]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37651]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37652]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37650]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37652]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37653]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37654]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37654]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37655]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37655]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37656]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37656]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37653]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37657]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37658]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37657]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37658]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37660]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37659]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37660]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37661]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37659]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37662]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37661]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37662]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37663]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37664]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37663]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37664]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37666]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37665]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37666]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37667]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37665]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37667]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37668]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37669]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37668]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37670]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37669]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37671]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37670]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37671]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37672]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37673]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37672]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37674]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37673]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37675]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37675]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37676]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37674]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37677]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37676]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37678]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37677]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37678]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37679]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37680]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37679]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37681]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37680]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37682]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37681]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37682]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37683]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37683]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37684]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37685]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37684]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37686]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37685]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37687]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37686]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37688]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37687]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37689]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37688]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37690]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37689]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37691]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37690]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37692]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37691]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37693]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37692]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37694]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37693]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37695]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37694]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37696]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37695]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37697]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37696]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37698]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37697]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37699]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37698]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37699]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37701]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37700]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37701]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37702]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37702]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37703]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37700]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37704]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37703]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37705]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37704]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37706]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37705]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37707]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37706]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37708]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37707]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37709]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37708]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37709]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37710]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37710]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37711]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37711]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37712]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37712]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37713]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37714]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37713]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37715]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37714]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37715]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37716]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37717]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37716]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37718]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37717]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37719]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37718]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37719]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37720]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37721]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37720]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37722]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37721]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37723]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37722]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37724]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37723]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37725]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37724]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37726]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37725]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37727]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37727]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37728]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37728]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37729]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37726]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37730]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37729]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37731]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37730]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37732]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37731]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37733]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37732]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37734]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37733]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37734]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37735]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37736]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37735]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37737]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37736]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37738]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37737]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37739]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37738]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37739]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37740]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37740]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37741]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37741]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37742]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37742]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37743]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37744]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37743]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37744]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37746]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37745]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37746]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37747]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37745]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37748]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37747]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37749]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37748]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37750]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37749]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37751]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37750]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37752]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37752]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37753]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37751]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37754]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37754]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37755]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37753]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37756]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37755]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37757]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37756]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37757]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37758]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37759]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37758]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37760]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37759]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37761]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37760]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37762]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37761]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37763]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37762]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37764]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37763]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37765]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37764]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37766]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37765]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37766]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37767]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37768]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37767]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37769]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37768]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37770]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37769]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37770]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37772]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37772]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37773]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37773]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37774]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37771]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37774]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37775]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37771]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37776]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37775]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37776]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37777]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37778]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37777]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37778]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37779]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37780]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37779]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37781]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37780]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37782]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37781]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37782]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37783]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37784]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37783]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37785]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37784]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37786]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37785]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37787]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37786]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37788]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37787]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37789]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37788]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37790]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37789]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37791]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37790]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37792]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37791]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37793]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37792]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37794]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37793]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37794]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37796]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37795]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37796]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37795]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37798]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37797]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37798]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37799]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37799]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37797]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37801]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37801]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37802]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37800]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37802]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37803]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37800]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37804]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37803]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37805]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37804]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37806]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37805]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37806]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37807]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37808]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37807]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37809]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37808]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37810]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37809]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37811]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37810]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37812]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37811]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37813]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37812]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37813]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37814]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37814]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37815]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37815]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37816]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37817]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37816]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37818]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37817]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37819]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37818]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37820]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37819]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37821]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37820]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37822]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37822]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37823]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37823]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37824]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37824]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37825]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37825]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37826]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37826]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37827]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37827]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37828]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37828]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37829]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37829]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37830]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37830]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37831]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37831]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37832]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37832]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37833]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37833]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37834]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37834]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37835]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37835]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37836]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37836]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37837]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37837]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37838]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37838]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37839]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37839]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37840]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37821]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37841]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37841]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37842]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37840]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37842]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37844]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37843]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37843]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37845]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37844]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37846]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37845]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37847]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37846]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37848]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37847]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37849]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37848]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37849]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37850]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37851]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37851]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37852]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37852]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37853]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37850]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37853]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37854]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37854]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37855]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37855]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37856]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37856]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37857]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37857]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37858]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37858]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37859]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37859]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37860]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37860]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37861]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37861]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37862]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37862]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37863]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37863]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37864]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37864]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37865]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37865]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37866]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37866]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37867]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37867]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37868]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37868]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37869]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37869]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37870]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37870]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37871]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37871]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37872]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37872]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37873]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37873]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37874]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37874]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37875]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37876]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37876]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37877]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37877]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37878]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37878]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37879]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37879]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37880]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37880]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37881]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37881]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37882]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37882]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37883]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37883]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37884]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37884]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37885]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37885]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37886]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37886]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37887]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37887]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37888]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37888]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37889]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37889]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37875]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37891]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37890]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37891]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37890]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37892]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37893]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37892]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37894]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37893]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37895]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37894]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37895]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37896]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37897]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37896]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37898]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37898]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37899]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37897]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37900]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37899]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37901]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37900]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37901]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37902]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37903]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37902]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37904]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37903]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37905]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37904]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37906]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37905]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37907]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37906]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37908]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37907]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37909]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37908]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37910]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37909]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37911]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37910]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37912]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37911]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37913]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37912]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37914]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37913]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37914]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37915]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37916]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37915]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37916]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37918]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37917]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37918]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37917]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37920]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37920]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37921]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37921]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37922]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37919]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37922]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37923]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37923]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37924]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37919]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37925]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37924]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37926]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37925]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37927]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37926]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37928]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37927]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37929]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37928]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37930]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37929]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37931]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37930]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37932]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37931]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37933]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37932]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37934]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37933]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37935]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37934]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37936]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37935]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37937]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37936]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37938]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37937]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37939]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37938]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37940]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37939]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37941]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37940]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37942]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37941]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37943]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37942]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37944]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37943]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37945]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37945]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37946]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37944]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37947]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37946]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37947]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37948]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37949]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37948]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37950]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37949]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37951]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37951]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37952]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37950]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37952]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37953]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37954]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37953]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37955]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37954]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37955]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37956]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37957]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37956]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37958]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37957]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37959]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37958]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37960]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37959]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37961]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37960]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37962]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37961]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37963]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37962]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37964]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37963]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37965]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37964]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37966]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37965]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37967]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37966]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37967]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37968]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37969]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37969]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37970]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37970]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37971]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37968]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37972]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37972]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37971]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37973]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 37974]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37973]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37975]]} + {:process 7 :type :fail :f :txn :value [[:append 5 37974]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37976]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37975]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37977]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37976]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37977]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37978]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 37979]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37978]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37980]]} + {:process 7 :type :fail :f :txn :value [[:append 0 37979]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37981]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37980]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 37982]]} + {:process 5 :type :fail :f :txn :value [[:append 5 37982]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37983]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37981]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37983]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 37984]]} + {:process 5 :type :fail :f :txn :value [[:append 0 37984]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37985]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37985]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 37986]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 37987]]} + {:process 5 :type :fail :f :txn :value [[:append 7 37986]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37988]]} + {:process 7 :type :fail :f :txn :value [[:append 3 37987]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37989]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37988]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 37990]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37989]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 37991]]} + {:process 5 :type :fail :f :txn :value [[:append 2 37990]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 37992]]} + {:process 7 :type :fail :f :txn :value [[:append 6 37991]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 37993]]} + {:process 7 :type :fail :f :txn :value [[:append 7 37993]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 37994]]} + {:process 5 :type :fail :f :txn :value [[:append 3 37992]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 37995]]} + {:process 7 :type :fail :f :txn :value [[:append 1 37994]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 37996]]} + {:process 5 :type :fail :f :txn :value [[:append 1 37995]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 37997]]} + {:process 7 :type :fail :f :txn :value [[:append 2 37996]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 37998]]} + {:process 5 :type :fail :f :txn :value [[:append 6 37997]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 37999]]} + {:process 7 :type :fail :f :txn :value [[:append 4 37998]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38000]]} + {:process 5 :type :fail :f :txn :value [[:append 4 37999]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38001]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38000]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38002]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38001]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38003]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38003]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38004]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38002]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38005]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38004]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38006]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38005]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38006]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38007]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38008]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38007]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38009]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38008]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38009]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38010]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38011]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38010]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38012]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38011]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38013]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38012]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38014]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38013]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38014]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38015]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38015]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38016]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38017]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38016]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38018]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38017]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38019]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38018]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38020]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38019]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38021]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38020]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38022]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38021]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38023]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38022]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38023]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38024]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38025]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38024]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38026]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38025]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38027]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38026]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38028]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38027]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38029]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38028]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38030]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38029]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38031]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38030]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38031]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38032]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38033]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38032]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38034]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38033]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38035]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38034]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38036]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38035]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38037]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38036]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38038]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38037]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38039]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38038]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38040]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38040]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38041]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38039]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38042]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38041]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38042]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38043]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38043]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38044]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38044]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38045]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38046]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38045]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38047]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38046]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38048]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38047]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38049]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38048]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38050]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38049]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38051]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38050]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38052]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38051]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38053]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38052]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38053]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38054]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38055]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38054]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38056]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38055]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38057]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38056]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38058]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38057]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38059]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38058]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38060]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38059]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38060]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38061]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38062]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38061]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38062]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38064]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38063]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38064]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38065]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38063]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38066]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38066]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38067]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38067]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38068]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38065]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38069]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38068]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38069]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38070]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38071]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38070]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38072]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38071]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38073]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38072]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38074]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38073]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38074]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38076]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38076]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38077]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38077]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38078]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38075]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38078]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38079]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38075]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38080]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38079]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38081]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38080]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38082]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38081]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38082]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38084]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38083]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38083]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38085]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38085]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38086]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38084]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38087]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38086]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38088]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38087]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38089]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38088]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38089]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38090]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38091]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38090]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38092]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38091]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38093]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38092]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38093]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38094]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38095]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38094]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38096]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38095]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38097]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38096]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38097]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38098]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38099]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38098]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38100]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38099]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38101]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38100]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38102]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38101]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38103]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38102]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38104]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38103]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38105]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38104]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38106]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38105]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38106]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38108]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38108]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38109]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38109]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38110]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38107]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38110]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38111]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38111]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38112]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38107]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38113]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38113]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38114]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38112]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38115]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38114]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38116]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38115]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38117]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38116]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38118]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38117]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38118]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38120]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38119]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38120]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38121]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38119]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38122]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38121]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38123]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38122]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38123]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38124]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38125]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38124]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38126]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38125]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38127]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38126]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38127]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38128]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38129]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38128]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38130]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38129]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38131]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38130]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38131]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38132]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38133]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38132]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38134]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38134]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38135]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38133]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38136]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38136]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38137]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38135]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38138]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38138]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38139]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38139]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38140]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38137]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38141]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38140]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38142]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38141]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38143]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38142]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38144]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38143]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38145]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38144]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38145]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38146]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38147]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38146]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38148]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38147]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38149]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38148]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38149]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38150]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38151]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38150]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38152]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38151]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38153]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38152]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38154]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38153]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38155]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38154]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38156]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38155]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38157]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38157]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38158]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38156]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38158]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38159]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38160]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38159]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38161]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38160]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38162]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38161]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38162]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38163]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38164]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38163]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38165]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38164]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38166]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38165]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38166]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38168]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38168]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38169]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38167]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38169]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38170]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38167]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38171]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38170]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38172]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38171]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38173]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38172]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38174]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38174]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38173]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38175]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38176]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38175]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38177]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38176]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38178]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38177]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38179]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38178]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38180]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38179]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38180]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38182]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38181]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38181]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38183]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38183]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38184]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38182]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38185]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38184]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38186]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38185]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38187]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38186]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38188]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38187]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38189]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38188]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38190]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38189]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38191]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38190]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38191]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38192]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38193]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38192]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38194]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38193]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38195]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38194]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38196]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38195]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38197]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38196]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38197]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38199]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38199]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38200]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38200]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38201]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38198]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38201]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38202]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38198]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38203]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38202]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38204]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38203]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38205]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38204]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38206]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38205]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38207]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38206]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38208]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38208]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38209]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38207]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38210]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38209]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38211]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38210]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38212]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38211]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38213]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38212]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38214]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38213]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38215]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38214]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38215]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38216]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38217]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38216]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38218]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38217]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38219]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38218]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38219]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38220]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38221]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38220]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38222]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38222]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38223]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38221]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38224]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38223]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38225]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38224]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38226]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38225]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38227]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38226]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38228]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38227]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38229]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38228]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38230]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38230]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38231]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38229]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38232]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38232]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38233]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38233]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38234]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38234]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38235]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38235]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38236]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38231]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38236]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38237]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38238]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38237]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38239]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38238]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38240]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38239]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38241]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38240]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38241]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38242]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38243]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38242]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38244]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38243]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38245]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38244]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38246]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38245]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38247]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38246]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38248]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38247]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38249]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38248]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38250]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38249]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38251]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38250]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38252]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38251]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38253]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38253]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38254]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38254]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38255]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38255]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38256]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38256]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38257]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38257]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38258]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38258]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38259]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38259]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38260]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38252]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38261]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38261]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38262]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38260]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38263]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38263]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38264]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38262]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38265]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38264]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38266]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38265]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38267]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38266]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38268]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38267]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38269]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38268]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38270]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38269]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38271]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38271]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38270]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38272]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38272]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38273]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38273]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38274]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38275]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38274]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38276]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38276]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38277]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38275]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38278]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38277]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38279]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38278]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38280]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38279]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38281]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38281]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38282]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38282]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38283]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38280]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38284]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38283]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38285]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38285]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38286]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38286]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38287]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38284]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38288]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38287]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38288]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38289]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38290]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38289]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38291]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38290]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38292]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38292]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38293]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38291]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38294]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38293]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38295]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38294]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38295]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38296]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38297]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38296]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38298]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38297]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38299]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38298]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38300]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38299]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38301]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38300]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38302]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38301]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38303]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38302]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38303]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38304]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38305]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38304]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38306]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38305]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38307]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38306]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38307]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38308]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38308]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38309]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38309]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38310]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38311]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38310]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38312]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38312]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38313]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38311]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38314]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38314]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38315]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38313]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38316]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38315]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38317]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38316]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38318]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38317]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38319]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38318]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38320]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38319]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38321]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38320]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38321]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38322]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38323]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38322]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38324]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38323]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38325]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38324]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38325]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38326]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38327]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38326]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38328]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38327]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38329]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38328]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38329]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38330]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38331]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38330]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38332]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38331]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38333]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38333]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38334]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38332]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38335]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38334]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38336]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38335]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38337]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38336]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38337]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38339]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38339]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38340]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38340]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38338]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38341]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38341]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38342]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38338]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38343]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38342]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38344]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38343]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38345]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38344]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38346]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38345]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38347]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38346]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38347]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38348]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38349]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38348]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38350]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38349]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38351]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38350]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38351]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38352]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38353]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38352]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38354]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38353]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38355]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38354]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38355]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38356]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38357]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38356]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38358]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38357]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38359]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38358]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38360]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38360]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38361]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38359]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38362]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38361]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38363]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38362]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38364]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38363]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38365]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38364]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38366]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38365]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38367]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38366]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38368]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38367]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38369]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38368]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38369]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38371]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38371]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38372]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38372]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38373]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38370]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38373]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38374]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38370]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38375]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38374]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38376]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38375]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38377]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38376]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38378]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38377]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38379]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38379]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38380]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38378]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38381]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38380]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38382]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38381]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38383]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38382]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38384]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38383]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38385]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38384]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38386]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38385]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38387]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38386]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38388]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38387]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38389]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38388]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38390]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38389]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38391]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38390]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38391]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38392]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38393]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38392]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38394]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38393]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38395]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38394]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38396]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38395]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38397]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38396]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38398]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38397]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38399]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38398]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38400]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38399]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38401]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38400]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38402]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38401]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38403]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38402]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38404]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38404]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38405]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38403]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38406]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38405]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38407]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38406]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38408]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38408]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38409]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38407]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38410]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38409]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38411]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38410]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38412]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38411]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38413]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38412]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38414]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38413]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38415]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38414]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38416]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38415]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38417]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38416]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38418]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38417]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38419]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38418]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38420]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38419]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38421]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38420]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38422]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38421]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38423]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38422]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38424]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38423]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38425]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38424]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38426]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38425]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38427]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38426]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38428]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38427]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38429]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38428]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38429]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38431]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38431]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38432]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38430]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38432]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38433]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38433]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38434]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38430]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38435]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38434]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38436]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38435]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38437]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38436]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38438]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38437]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38439]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38438]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38440]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38439]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38441]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38440]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38442]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38441]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38443]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38442]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38444]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38443]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38445]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38444]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38445]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38446]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38447]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38446]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38448]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38447]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38449]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38448]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38450]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38449]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38451]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38450]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38452]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38451]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38453]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38452]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38453]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38454]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38455]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38454]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38456]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38456]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38455]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38457]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38458]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38457]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38459]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38458]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38459]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38460]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38461]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38460]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38461]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38463]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38463]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38464]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38464]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38465]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38462]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38465]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38466]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38462]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38467]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38466]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38468]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38467]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38469]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38468]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38469]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38470]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38471]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38470]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38472]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38471]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38473]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38472]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38473]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38474]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38475]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38474]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38476]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38475]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38477]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38476]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38478]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38478]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38479]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38477]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38480]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38480]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38481]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38479]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38482]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38481]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38483]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38483]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38484]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38482]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38485]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38484]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38486]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38485]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38486]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38487]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38488]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38487]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38489]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38488]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38490]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38489]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38491]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38490]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38492]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38492]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38493]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38493]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38494]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38494]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38491]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38495]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38496]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38495]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38496]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38498]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38497]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38497]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38499]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38498]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38500]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38499]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38501]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38500]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38502]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38501]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38503]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38503]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38504]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38502]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38505]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38504]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38506]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38505]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38507]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38506]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38507]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38508]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38509]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38508]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38510]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38509]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38511]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38510]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38511]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38512]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38513]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38512]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38514]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38513]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38515]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38514]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38516]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38515]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38516]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38518]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38517]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38518]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38519]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38517]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38520]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38519]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38521]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38520]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38522]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38521]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38523]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38522]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38524]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38523]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38524]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38525]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38525]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38526]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38527]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38526]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38528]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38528]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38529]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38527]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38530]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38529]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38531]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38530]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38531]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38532]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38533]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38532]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38534]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38533]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38535]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38534]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38536]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38535]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38537]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38536]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38538]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38537]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38539]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38538]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38540]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38539]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38540]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38541]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38542]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38541]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38543]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38542]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38544]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38543]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38545]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38544]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38546]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38545]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38547]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38546]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38548]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38547]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38548]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38549]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38550]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38549]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38551]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38551]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38552]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38550]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38553]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38552]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38554]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38553]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38555]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38554]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38556]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38555]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38556]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38557]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38557]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38558]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38558]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38559]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38560]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38559]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38561]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38560]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38562]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38561]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38563]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38562]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38564]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38563]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38565]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38564]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38566]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38565]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38567]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38566]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38568]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38567]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38568]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38569]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38570]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38569]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38571]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38570]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38572]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38571]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38572]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38573]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38574]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38573]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38575]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38574]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38576]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38575]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38577]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38576]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38578]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38577]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38578]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38579]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38580]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38579]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38581]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38580]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38581]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38582]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38583]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38582]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38584]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38583]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38585]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38584]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38585]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38586]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38586]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38587]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38587]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38588]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38588]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38589]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38590]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38590]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38591]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38589]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38591]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38592]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38593]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38592]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38594]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38593]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38595]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38595]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38596]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38594]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38597]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38596]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38598]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38597]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38599]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38598]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38599]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38600]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38601]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38601]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38602]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38600]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38603]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38602]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38604]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38603]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38604]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38605]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38606]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38606]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38607]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38605]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38608]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38607]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38609]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38608]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38609]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38610]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38611]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38611]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38612]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38610]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38613]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38612]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38614]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38613]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38614]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38615]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38616]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38615]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38617]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38616]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38618]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38617]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38619]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38618]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38619]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38621]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38621]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38622]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38622]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38623]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38623]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38624]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38620]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38624]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38625]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38625]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38626]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38620]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38627]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38626]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38628]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38627]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38628]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38629]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38629]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38630]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38630]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38632]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38631]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38632]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38633]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38631]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38634]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38633]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38635]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38635]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38636]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38634]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38636]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38637]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38638]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38637]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38639]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38639]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38640]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38640]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38641]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38638]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38642]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38641]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38643]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38642]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38644]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38643]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38645]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38644]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38646]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38645]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38647]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38646]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38647]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38648]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38649]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38648]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38650]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38649]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38651]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38650]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38652]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38651]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38653]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38652]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38654]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38653]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38655]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38654]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38656]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38655]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38656]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38658]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38657]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38658]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38657]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38660]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38660]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38661]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38661]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38662]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38659]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38662]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38663]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38663]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38664]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38659]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38665]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38664]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38665]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38666]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38667]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38666]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38668]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38667]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38669]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38668]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38670]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38669]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38671]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38670]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38672]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38671]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38673]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38672]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38674]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38673]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38675]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38674]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38676]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38675]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38677]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38676]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38677]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38678]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38679]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38678]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38680]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38679]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38681]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38680]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38681]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38682]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38683]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38682]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38684]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38684]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38685]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38683]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38686]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38685]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38686]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38687]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38688]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38687]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38688]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38690]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38689]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38690]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38691]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38689]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38692]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38691]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38692]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38694]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38694]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38695]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38695]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38693]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38696]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38693]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38697]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38696]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38698]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38697]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38699]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38698]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38699]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38700]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38701]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38700]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38702]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38701]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38703]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38702]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38703]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38705]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38704]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38705]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38706]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38704]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38707]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38706]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38708]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38707]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38708]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38710]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38709]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38710]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38711]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38709]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38712]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38711]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38713]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38712]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38713]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38714]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38715]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38714]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38716]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38715]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38717]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38716]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38718]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38717]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38719]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38718]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38720]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38720]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38721]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38719]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38721]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38723]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38723]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38724]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38724]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38725]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38722]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38725]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38726]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38722]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38726]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38727]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38728]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38728]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38729]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38727]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38729]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38730]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38731]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38730]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38732]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38731]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38733]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38732]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38734]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38733]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38735]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38735]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38736]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38734]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38737]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38736]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38738]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38737]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38738]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38740]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38739]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38739]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38741]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38740]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38742]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38741]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38743]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38742]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38744]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38743]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38745]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38744]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38746]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38745]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38747]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38746]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38748]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38747]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38749]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38748]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38749]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38750]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38751]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38750]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38752]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38751]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38753]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38753]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38754]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38754]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38755]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38752]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38755]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38756]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38756]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38757]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38757]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38758]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38759]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38758]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38760]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38759]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38761]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38761]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38762]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38760]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38763]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38762]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38764]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38763]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38765]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38764]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38765]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38766]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38767]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38766]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38768]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38767]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38769]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38768]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38769]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38770]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38771]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38770]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38772]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38771]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38773]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38772]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38774]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38773]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38775]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38774]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38776]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38775]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38777]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38776]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38778]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38777]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38779]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38778]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38780]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38779]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38781]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38781]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38782]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38780]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38783]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38782]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38784]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38783]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38785]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38784]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38785]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38786]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38786]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38787]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38787]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38788]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38788]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38789]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38789]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38790]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38790]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38791]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38792]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38792]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38791]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38793]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38794]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38793]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38795]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38794]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38796]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38795]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38796]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38797]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38798]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38797]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38799]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38798]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38800]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38799]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38800]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38801]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38801]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38802]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38803]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38802]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38804]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38803]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38805]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38804]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38805]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38806]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38807]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38806]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38808]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38807]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38809]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38808]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38809]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38810]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38811]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38810]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38812]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38811]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38813]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38812]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38813]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38814]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38815]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38814]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38816]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38815]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38817]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38816]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38817]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38818]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38818]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38820]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38820]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38821]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38821]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38822]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38819]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38822]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38823]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38819]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38824]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38824]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38825]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38825]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38826]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38826]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38827]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38827]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38828]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38828]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38829]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38829]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38830]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38823]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38831]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38830]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38832]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38832]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38833]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38831]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38833]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38834]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38835]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38834]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38836]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38835]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38837]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38836]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38837]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38838]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38839]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38838]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38840]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38839]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38841]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38840]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38842]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38841]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38843]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38842]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38844]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38844]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38845]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38845]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38846]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38846]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38847]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38843]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38848]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38847]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38849]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38848]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38850]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38849]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38851]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38850]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38852]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38852]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38853]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38851]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38854]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38853]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38855]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38854]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38855]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38857]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38856]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38857]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38858]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38856]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38859]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38858]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38860]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38859]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38860]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38862]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38861]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38861]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38863]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38862]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38864]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38863]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38865]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38864]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38866]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38865]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38867]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38866]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38868]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38867]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38868]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38869]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38870]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38869]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38871]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38870]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38871]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38872]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38873]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38872]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38873]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38875]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38875]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38876]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38876]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38877]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38877]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38874]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38878]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38874]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38878]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38879]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38880]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38880]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38881]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38879]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38882]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38881]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38883]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38882]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38883]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38884]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38885]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38884]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38886]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38886]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38887]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38885]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38888]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38887]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38889]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38888]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38890]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38889]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38891]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38890]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38892]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38891]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38893]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38892]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38893]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38894]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38895]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38894]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38896]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38895]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38897]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38896]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38897]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38898]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38899]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38898]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38900]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38899]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38901]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38900]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38902]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38901]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38903]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38902]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38904]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38904]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38905]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38903]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38905]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38907]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38907]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38908]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38908]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38909]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38909]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38910]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38906]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38910]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38911]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38911]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38912]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38912]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38913]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38906]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38913]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38914]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38915]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38914]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38916]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38915]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38917]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38916]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38918]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38917]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38919]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38918]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38920]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38919]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38921]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38921]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38922]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38922]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38923]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38920]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38923]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38924]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38925]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38925]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38926]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38924]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38927]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38926]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38928]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38927]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38928]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38929]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38930]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38929]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38931]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38930]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38932]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38931]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38933]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38932]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38934]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38933]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38935]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38934]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38936]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38935]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38937]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38936]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38938]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38937]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38939]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38938]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38940]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38939]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38941]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38940]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38942]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38941]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38943]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38942]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38944]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38944]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38943]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38945]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38945]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38946]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38946]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38947]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38948]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38947]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38948]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38949]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38950]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38949]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38951]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38950]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38952]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38951]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38953]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38952]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38954]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38953]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38955]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38954]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38956]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38955]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38957]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38956]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38958]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38957]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38959]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38958]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38960]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38959]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38961]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38960]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38962]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38961]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38963]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38962]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38964]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38963]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38965]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38964]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38966]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38965]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38967]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38966]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38968]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38967]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38969]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38968]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38970]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38970]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38971]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38969]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38972]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38971]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38973]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38972]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38973]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38974]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38974]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38975]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38975]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38976]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38977]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38976]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38978]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38977]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38979]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38978]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 38980]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38979]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 38981]]} + {:process 5 :type :fail :f :txn :value [[:append 4 38980]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38982]]} + {:process 7 :type :fail :f :txn :value [[:append 5 38981]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38983]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38982]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38983]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 38984]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 38985]]} + {:process 5 :type :fail :f :txn :value [[:append 3 38984]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38986]]} + {:process 7 :type :fail :f :txn :value [[:append 0 38985]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38987]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38986]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38987]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 38988]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 38989]]} + {:process 5 :type :fail :f :txn :value [[:append 6 38988]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 38990]]} + {:process 5 :type :fail :f :txn :value [[:append 7 38990]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 38991]]} + {:process 7 :type :fail :f :txn :value [[:append 3 38989]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 38992]]} + {:process 7 :type :fail :f :txn :value [[:append 4 38992]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 38993]]} + {:process 5 :type :fail :f :txn :value [[:append 5 38991]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 38994]]} + {:process 7 :type :fail :f :txn :value [[:append 6 38993]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 38995]]} + {:process 5 :type :fail :f :txn :value [[:append 2 38994]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 38995]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 38996]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 38997]]} + {:process 5 :type :fail :f :txn :value [[:append 0 38996]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 38998]]} + {:process 7 :type :fail :f :txn :value [[:append 1 38997]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 38999]]} + {:process 5 :type :fail :f :txn :value [[:append 1 38998]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39000]]} + {:process 7 :type :fail :f :txn :value [[:append 2 38999]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39001]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39000]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39002]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39001]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39003]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39002]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39003]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39004]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39004]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39005]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39005]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39006]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39006]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39007]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39008]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39007]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39008]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39010]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39009]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39010]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39011]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39009]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39012]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39011]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39013]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39013]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39014]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39012]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39015]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39014]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39016]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39015]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39017]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39017]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39018]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39016]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39019]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39018]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39020]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39019]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39021]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39020]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39021]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39022]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39023]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39022]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39024]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39023]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39025]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39024]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39025]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39026]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39027]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39026]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39028]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39028]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39029]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39027]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39030]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39029]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39031]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39030]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39031]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39032]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39033]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39032]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39034]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39033]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39035]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39034]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39035]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39037]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39037]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39038]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39038]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39039]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39036]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39039]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39040]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39040]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39041]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39036]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39042]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39042]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39043]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39041]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39044]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39043]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39045]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39044]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39046]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39045]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39047]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39046]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39048]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39047]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39049]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39048]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39049]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39050]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39051]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39050]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39052]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39051]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39053]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39052]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39053]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39054]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39055]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39054]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39056]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39055]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39057]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39056]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39058]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39057]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39059]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39058]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39060]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39059]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39061]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39060]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39062]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39061]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39063]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39063]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39064]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39062]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39065]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39065]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39064]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39066]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39066]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39068]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39068]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39069]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39069]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39070]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39067]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39070]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39071]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39067]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39072]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39071]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39073]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39072]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39073]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39074]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39075]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39074]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39076]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39075]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39077]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39076]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39078]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39077]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39079]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39078]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39080]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39079]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39081]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39080]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39082]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39081]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39083]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39082]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39084]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39084]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39083]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39085]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39086]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39085]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39087]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39087]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39088]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39086]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39088]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39090]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39089]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39089]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39091]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39090]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39092]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39091]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39093]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39092]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39094]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39093]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39095]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39094]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39096]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39095]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39097]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39096]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39097]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39099]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39099]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39100]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39098]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39100]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39101]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39098]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39101]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39102]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39103]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39102]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39104]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39103]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39105]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39104]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39105]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39106]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39107]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39106]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39108]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39107]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39109]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39108]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39110]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39109]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39111]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39110]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39112]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39111]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39113]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39112]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39114]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39113]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39115]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39115]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39116]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39114]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39117]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39117]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39118]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39116]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39119]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39118]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39120]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39119]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39121]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39120]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39122]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39121]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39122]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39123]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39124]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39123]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39125]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39124]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39126]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39125]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39127]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39126]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39127]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39129]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39129]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39130]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39130]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39131]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39128]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39131]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39128]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39132]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39133]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39132]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39134]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39133]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39135]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39135]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39136]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39134]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39137]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39136]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39138]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39137]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39139]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39138]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39140]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39139]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39141]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39141]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39140]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39142]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39143]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39142]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39143]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39144]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39145]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39144]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39146]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39145]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39147]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39146]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39148]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39147]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39149]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39148]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39150]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39149]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39151]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39150]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39152]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39151]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39153]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39152]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39154]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39153]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39155]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39154]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39156]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39155]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39157]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39156]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39158]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39157]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39159]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39158]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39160]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39160]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39161]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39159]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39161]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39162]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39163]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39162]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39164]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39163]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39165]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39164]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39165]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39166]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39167]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39166]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39168]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39167]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39169]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39168]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39170]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39169]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39171]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39170]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39172]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39171]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39173]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39172]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39174]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39173]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39175]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39174]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39176]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39175]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39177]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39176]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39178]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39177]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39179]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39178]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39180]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39179]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39181]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39180]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39181]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39182]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39183]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39182]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39184]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39183]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39185]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39184]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39186]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39186]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39187]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39185]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39188]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39187]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39188]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39189]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39189]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39190]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39191]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39190]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39192]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39191]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39193]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39192]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39194]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39193]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39195]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39194]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39196]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39195]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39197]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39196]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39198]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39197]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39198]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39199]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39200]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39199]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39200]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39202]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39201]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39201]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39203]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39202]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39204]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39203]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39205]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39204]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39206]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39205]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39207]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39206]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39208]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39207]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39208]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39210]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39209]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39210]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39211]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39211]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39212]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39209]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39213]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39213]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39214]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39212]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39215]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39214]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39216]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39215]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39217]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39216]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39218]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39217]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39218]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39219]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39219]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39220]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39220]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39221]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39222]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39221]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39223]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39222]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39224]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39223]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39225]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39224]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39226]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39225]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39227]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39226]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39228]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39227]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39229]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39228]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39230]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39229]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39231]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39230]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39232]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39231]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39233]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39233]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39234]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39232]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39235]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39234]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39236]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39235]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39237]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39236]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39237]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39238]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39239]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39238]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39240]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39239]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39241]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39240]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39242]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39241]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39243]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39242]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39244]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39243]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39245]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39244]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39246]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39245]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39247]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39246]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39248]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39247]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39249]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39248]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39249]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39250]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39250]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39251]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39251]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39253]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39253]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39254]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39252]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39254]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39255]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39252]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39255]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39256]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39257]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39256]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39258]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39257]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39258]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39259]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39260]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39259]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39261]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39260]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39261]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39262]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39263]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39262]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39264]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39263]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39265]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39264]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39265]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39266]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39267]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39266]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39268]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39267]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39269]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39268]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39269]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39270]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39271]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39270]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39272]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39271]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39273]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39272]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39273]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39274]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39275]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39274]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39276]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39275]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39277]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39276]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39277]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39278]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39279]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39278]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39280]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39279]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39281]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39280]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39282]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39281]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39282]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39284]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39284]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39285]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39283]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39285]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39286]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39283]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39287]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39286]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39288]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39287]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39289]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39288]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39290]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39289]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39291]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39290]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39292]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39291]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39293]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39292]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39294]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39293]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39295]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39294]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39296]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39295]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39296]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39297]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39298]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39297]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39299]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39298]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39300]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39299]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39301]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39300]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39302]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39301]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39303]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39303]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39304]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39302]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39304]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39305]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39306]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39305]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39307]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39306]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39308]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39307]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39309]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39308]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39310]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39309]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39311]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39310]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39311]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39313]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39313]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39314]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39312]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39314]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39312]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39315]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39316]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39315]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39317]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39316]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39317]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39318]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39319]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39318]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39320]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39319]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39321]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39320]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39322]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39321]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39323]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39322]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39324]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39323]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39325]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39324]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39325]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39326]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39327]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39326]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39328]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39327]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39329]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39329]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39330]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39328]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39331]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39330]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39332]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39331]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39333]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39332]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39334]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39333]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39335]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39334]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39336]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39335]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39337]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39336]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39337]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39338]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39339]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39338]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39340]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39339]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39341]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39340]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39342]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39341]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39343]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39342]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39344]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39344]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39345]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39345]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39346]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39346]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39347]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39347]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39348]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39343]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39349]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39348]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39350]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39349]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39351]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39351]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39352]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39350]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39353]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39352]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39354]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39353]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39355]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39354]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39356]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39355]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39357]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39356]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39358]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39357]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39358]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39359]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39359]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39360]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39361]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39360]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39362]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39361]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39363]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39362]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39364]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39363]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39365]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39364]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39366]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39365]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39367]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39366]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39368]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39367]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39369]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39368]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39369]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39371]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39370]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39371]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39372]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39370]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39373]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39372]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39373]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39375]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39375]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39376]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39376]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39377]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39377]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39374]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39378]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39378]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39379]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39379]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39380]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39374]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39381]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39380]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39382]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39381]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39383]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39382]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39383]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39384]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39385]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39384]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39386]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39385]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39387]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39386]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39387]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39388]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39389]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39388]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39390]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39389]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39391]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39390]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39391]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39392]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39393]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39392]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39394]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39393]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39395]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39394]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39395]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39396]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39397]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39396]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39398]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39398]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39399]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39397]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39400]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39399]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39401]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39400]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39402]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39401]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39403]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39402]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39404]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39403]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39405]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39404]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39406]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39405]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39407]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39406]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39407]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39409]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39409]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39410]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39410]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39411]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39408]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39411]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39412]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39408]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39413]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39412]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39414]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39413]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39415]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39414]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39415]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39416]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39417]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39416]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39418]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39417]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39419]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39418]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39420]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39419]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39421]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39420]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39422]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39422]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39423]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39421]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39424]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39423]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39425]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39424]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39426]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39425]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39426]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39427]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39428]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39427]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39429]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39428]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39430]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39429]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39431]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39430]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39432]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39431]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39433]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39432]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39434]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39433]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39435]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39434]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39435]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39436]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39437]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39436]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39438]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39437]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39439]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39438]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39439]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39440]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39440]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39441]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39441]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39442]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39442]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39443]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39444]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39443]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39445]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39445]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39446]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39444]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39447]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39446]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39448]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39447]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39449]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39448]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39450]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39449]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39451]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39450]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39452]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39451]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39453]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39452]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39454]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39453]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39455]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39454]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39456]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39455]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39457]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39456]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39458]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39457]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39459]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39458]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39460]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39459]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39461]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39460]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39462]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39461]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39463]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39462]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39464]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39463]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39465]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39464]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39466]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39465]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39467]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39466]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39468]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39467]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39469]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39469]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39470]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39468]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39471]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39470]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39471]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39472]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39472]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39473]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39473]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39474]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39475]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39474]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39476]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39475]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39477]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39476]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39478]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39477]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39478]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39479]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39480]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39479]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39480]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39481]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39482]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39481]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39483]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39482]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39483]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39484]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39485]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39484]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39486]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39485]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39487]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39486]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39488]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39487]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39488]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39489]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39490]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39489]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39491]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39490]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39492]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39491]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39493]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39492]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39494]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39493]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39495]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39494]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39496]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39495]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39497]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39496]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39498]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39498]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39497]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39500]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39500]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39501]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39501]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39502]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39499]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39502]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39499]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39504]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39503]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39503]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39505]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39504]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39506]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39505]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39506]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39508]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39507]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39507]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39509]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39508]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39510]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39509]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39511]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39510]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39512]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39511]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39513]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39512]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39514]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39513]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39514]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39516]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39515]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39516]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39517]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39515]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39518]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39518]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39519]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39519]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39520]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39517]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39521]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39520]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39522]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39521]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39523]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39522]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39524]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39523]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39525]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39524]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39526]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39525]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39527]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39526]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39528]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39527]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39529]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39528]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39529]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39530]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39530]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39532]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39532]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39533]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39533]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39534]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39531]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39534]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39535]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39531]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39536]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39535]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39537]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39536]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39538]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39537]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39538]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39540]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39539]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39539]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39541]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39541]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39542]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39540]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39543]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39542]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39544]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39543]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39545]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39544]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39545]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39546]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39547]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39546]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39548]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39547]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39549]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39548]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39550]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39549]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39551]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39550]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39552]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39551]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39553]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39552]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39553]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39554]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39555]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39554]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39556]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39555]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39557]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39556]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39557]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39558]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39559]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39558]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39560]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39559]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39561]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39560]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39562]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39561]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39563]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39562]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39564]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39563]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39564]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39566]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39565]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39566]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39567]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39565]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39568]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39567]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39569]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39568]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39570]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39569]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39571]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39570]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39571]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39572]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39573]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39572]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39574]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39573]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39575]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39574]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39576]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39575]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39577]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39576]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39578]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39577]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39579]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39578]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39580]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39579]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39580]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39582]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39581]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39582]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39581]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39583]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39584]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39583]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39585]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39584]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39586]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39585]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39587]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39586]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39588]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39587]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39589]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39588]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39590]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39589]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39591]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39590]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39592]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39592]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39593]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39591]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39593]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39595]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39595]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39596]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39596]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39597]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39597]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39594]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39598]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39594]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39599]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39598]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39600]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39599]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39601]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39600]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39602]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39601]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39603]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39602]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39604]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39603]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39605]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39604]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39605]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39606]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39607]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39606]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39608]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39607]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39609]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39608]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39609]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39610]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39611]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39610]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39612]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39612]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39613]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39611]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39614]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39613]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39615]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39614]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39616]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39615]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39617]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39616]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39618]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39617]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39619]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39618]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39620]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39619]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39620]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39621]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39622]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39621]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39623]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39622]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39624]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39623]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39625]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39624]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39626]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39626]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39627]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39627]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39628]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39628]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39625]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39629]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39630]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39629]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39631]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39630]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39632]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39631]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39633]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39632]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39634]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39633]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39634]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39635]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39636]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39635]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39637]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39637]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39638]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39636]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39639]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39638]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39640]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39639]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39641]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39640]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39641]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39642]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39643]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39642]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39644]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39643]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39645]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39644]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39645]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39646]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39647]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39646]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39648]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39647]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39649]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39648]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39650]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39649]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39651]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39650]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39652]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39651]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39653]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39652]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39654]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39653]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39654]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39655]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39656]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39655]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39657]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39656]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39658]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39657]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39659]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39658]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39659]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39660]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39661]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39660]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39662]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39661]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39663]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39662]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39664]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39663]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39665]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39664]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39666]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39665]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39667]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39666]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39667]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39668]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39669]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39668]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39670]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39669]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39671]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39670]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39671]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39672]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39673]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39672]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39674]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39673]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39675]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39674]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39675]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39676]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39677]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39676]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39678]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39677]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39679]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39678]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39679]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39680]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39681]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39680]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39682]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39681]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39683]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39682]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39683]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39684]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39685]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39684]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39686]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39686]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39687]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39685]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39688]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39687]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39689]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39688]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39689]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39690]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39690]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39691]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39691]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39692]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39693]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39692]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39694]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39693]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39695]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39694]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39696]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39695]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39697]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39696]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39698]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39697]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39699]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39698]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39700]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39699]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39701]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39700]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39702]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39701]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39703]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39702]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39703]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39704]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39705]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39704]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39706]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39705]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39707]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39706]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39708]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39708]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39709]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39707]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39710]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39709]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39710]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39711]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39712]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39711]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39712]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39713]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39714]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39713]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39715]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39714]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39716]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39715]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39717]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39716]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39718]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39717]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39719]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39718]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39720]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39719]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39720]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39721]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39721]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39722]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39722]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39723]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39724]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39723]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39725]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39724]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39726]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39725]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39727]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39726]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39728]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39727]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39729]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39728]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39730]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39729]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39731]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39730]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39732]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39732]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39733]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39731]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39734]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39734]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39735]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39733]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39735]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39736]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39737]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39736]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39738]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39737]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39739]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39738]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39740]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39739]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39740]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39741]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39742]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39741]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39743]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39742]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39744]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39743]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39744]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39745]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39746]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39745]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39747]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39746]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39748]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39747]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39749]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39748]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39750]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39749]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39751]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39750]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39751]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39753]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39753]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39754]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39754]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39755]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39752]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39755]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39756]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39756]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39757]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39752]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39758]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39757]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39759]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39758]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39759]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39760]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39761]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39760]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39762]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39761]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39763]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39762]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39764]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39763]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39765]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39764]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39766]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39765]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39767]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39766]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39767]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39768]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39769]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39768]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39770]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39769]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39771]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39770]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39772]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39771]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39773]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39772]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39774]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39773]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39775]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39775]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39776]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39774]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39777]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39776]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39778]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39777]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39779]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39778]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39779]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39780]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39781]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39780]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39782]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39781]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39783]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39782]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39784]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39783]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39784]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39786]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39786]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39787]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39787]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39788]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39785]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39788]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39789]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39785]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39790]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39789]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39791]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39790]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39792]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39791]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39792]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39793]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39794]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39793]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39795]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39794]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39796]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39795]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39797]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39796]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39798]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39797]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39799]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39798]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39800]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39799]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39801]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39801]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39802]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39800]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39803]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39802]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39803]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39804]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39805]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39804]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39806]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39805]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39807]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39806]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39808]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39807]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39809]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39808]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39810]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39809]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39811]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39810]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39811]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39812]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39813]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39812]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39814]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39813]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39815]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39814]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39815]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39816]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39817]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39816]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39818]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39817]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39818]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39820]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39820]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39821]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39821]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39822]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39822]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39823]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39819]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39823]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39824]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39824]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39819]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39825]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39826]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39825]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39827]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39826]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39828]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39827]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39829]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39828]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39830]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39829]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39830]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39832]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39831]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39832]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39831]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39834]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39833]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39834]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39835]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39833]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39835]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39836]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39837]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39836]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39838]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39837]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39839]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39838]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39840]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39839]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39841]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39840]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39842]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39841]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39843]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39842]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39844]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39843]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39845]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39844]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39846]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39845]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39847]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39847]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39848]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39846]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39849]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39848]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39849]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39851]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39851]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39852]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39850]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39852]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39853]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39850]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39854]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39853]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39855]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39854]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39856]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39855]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39857]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39856]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39857]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39858]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39859]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39858]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39860]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39859]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39861]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39860]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39862]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39861]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39863]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39862]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39864]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39863]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39865]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39864]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39866]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39865]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39867]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39866]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39868]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39867]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39869]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39868]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39870]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39869]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39871]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39871]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39872]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39870]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39873]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39872]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39874]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39873]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39875]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39874]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39876]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39875]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39877]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39876]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39878]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39877]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39879]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39878]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39880]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39879]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39881]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39880]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39882]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39882]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39883]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39883]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39881]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39884]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39885]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39884]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39886]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39885]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39887]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39886]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39887]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39888]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39889]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39888]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39890]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39889]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39891]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39890]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39891]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39892]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39893]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39892]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39894]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39893]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39895]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39895]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39896]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39894]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39897]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39896]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39898]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39897]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39899]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39898]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39900]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39899]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39901]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39900]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39902]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39901]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39903]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39902]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39904]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39903]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39905]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39904]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39906]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39905]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39907]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39906]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39908]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39907]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39909]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39908]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39910]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39909]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39911]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39910]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39911]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39912]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39912]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39913]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39913]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39914]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39914]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39915]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39915]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39916]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39917]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39917]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39918]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39918]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39919]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39916]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39920]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39919]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39921]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39921]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39922]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39920]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39923]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39922]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39924]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39923]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39925]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39924]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39925]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39926]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39927]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39926]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39928]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39927]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39929]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39928]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39930]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39929]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39931]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39930]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39932]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39931]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39933]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39932]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39933]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39934]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39935]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39934]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39936]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39935]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39937]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39936]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39938]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39937]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39938]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39939]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39940]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39939]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39941]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39940]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39942]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39941]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39943]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39943]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39944]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39942]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39944]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39945]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39946]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39945]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39947]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39946]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39948]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39947]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39949]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39949]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39950]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39948]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39950]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39951]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39951]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39952]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39952]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39953]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39953]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39954]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39954]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39955]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39956]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39955]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39957]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39957]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39958]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39956]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39959]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39958]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39960]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39959]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39961]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39960]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39962]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39961]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39963]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39962]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39963]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39964]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39965]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39964]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39966]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39965]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39967]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39966]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39967]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39968]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39969]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39968]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39970]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39969]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39971]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39970]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39971]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39972]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 39973]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39972]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39974]]} + {:process 7 :type :fail :f :txn :value [[:append 5 39973]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39975]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39974]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39975]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39976]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 39977]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39976]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39978]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39978]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39979]]} + {:process 7 :type :fail :f :txn :value [[:append 0 39977]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39980]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39979]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39981]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39980]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 39982]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39981]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 39983]]} + {:process 7 :type :fail :f :txn :value [[:append 3 39982]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39984]]} + {:process 5 :type :fail :f :txn :value [[:append 5 39983]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39985]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39984]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39985]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 39986]]} + {:process 5 :type :fail :f :txn :value [[:append 0 39986]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39987]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39987]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 39988]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 7 39988]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 39989]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39990]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39990]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 39991]]} + {:process 7 :type :fail :f :txn :value [[:append 6 39989]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 39992]]} + {:process 5 :type :fail :f :txn :value [[:append 2 39991]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 39993]]} + {:process 7 :type :fail :f :txn :value [[:append 7 39992]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 39994]]} + {:process 5 :type :fail :f :txn :value [[:append 3 39993]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 39995]]} + {:process 7 :type :fail :f :txn :value [[:append 1 39994]]} + {:process 5 :type :fail :f :txn :value [[:append 1 39995]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 39996]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 39997]]} + {:process 5 :type :fail :f :txn :value [[:append 6 39996]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 2 39997]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 39999]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 39998]]} + {:process 7 :type :fail :f :txn :value [[:append 4 39999]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40000]]} + {:process 5 :type :fail :f :txn :value [[:append 4 39998]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 40001]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40000]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40002]]} + {:process 5 :type :fail :f :txn :value [[:append 5 40001]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 40003]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40002]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40004]]} + {:process 5 :type :fail :f :txn :value [[:append 3 40003]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 40005]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40004]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40006]]} + {:process 5 :type :fail :f :txn :value [[:append 0 40005]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 40007]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40006]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40008]]} + {:process 5 :type :fail :f :txn :value [[:append 6 40007]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 40009]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40008]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40010]]} + {:process 5 :type :fail :f :txn :value [[:append 7 40009]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40010]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40011]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 40012]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40011]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40013]]} + {:process 5 :type :fail :f :txn :value [[:append 5 40012]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 40014]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40013]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40015]]} + {:process 5 :type :fail :f :txn :value [[:append 2 40014]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 40016]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40015]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 0 40016]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 40018]]} + {:process 5 :type :fail :f :txn :value [[:append 1 40018]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 40019]]} + {:process 5 :type :fail :f :txn :value [[:append 7 40019]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 40020]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40017]]} + {:process 5 :type :fail :f :txn :value [[:append 4 40020]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 40021]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40017]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40022]]} + {:process 5 :type :fail :f :txn :value [[:append 2 40021]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 40023]]} + {:process 5 :type :fail :f :txn :value [[:append 3 40023]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 40024]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40022]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40025]]} + {:process 5 :type :fail :f :txn :value [[:append 1 40024]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 40026]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40025]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40027]]} + {:process 5 :type :fail :f :txn :value [[:append 6 40026]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40027]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 40028]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40029]]} + {:process 5 :type :fail :f :txn :value [[:append 4 40028]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 40030]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40029]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40031]]} + {:process 5 :type :fail :f :txn :value [[:append 5 40030]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 40032]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40031]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 3 40032]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 40033]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40034]]} + {:process 5 :type :fail :f :txn :value [[:append 0 40033]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40034]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 40035]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40036]]} + {:process 5 :type :fail :f :txn :value [[:append 6 40035]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 40037]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40036]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40038]]} + {:process 5 :type :fail :f :txn :value [[:append 7 40037]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 40039]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40038]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40040]]} + {:process 5 :type :fail :f :txn :value [[:append 5 40039]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 40041]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40040]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40042]]} + {:process 5 :type :fail :f :txn :value [[:append 2 40041]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 40043]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40042]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40044]]} + {:process 5 :type :fail :f :txn :value [[:append 0 40043]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 40045]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40044]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40046]]} + {:process 5 :type :fail :f :txn :value [[:append 1 40045]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 40047]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40046]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40048]]} + {:process 5 :type :fail :f :txn :value [[:append 7 40047]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 40049]]} + {:process 5 :type :fail :f :txn :value [[:append 4 40049]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 40050]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40048]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40051]]} + {:process 5 :type :fail :f :txn :value [[:append 2 40050]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 40052]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40051]]} + {:process 5 :type :fail :f :txn :value [[:append 3 40052]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 40054]]} + {:process 5 :type :fail :f :txn :value [[:append 1 40054]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 40055]]} + {:process 5 :type :fail :f :txn :value [[:append 6 40055]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 40056]]} + {:process 5 :type :fail :f :txn :value [[:append 4 40056]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 40057]]} + {:process 5 :type :fail :f :txn :value [[:append 5 40057]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40053]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 40058]]} + {:process 5 :type :fail :f :txn :value [[:append 3 40058]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 40059]]} + {:process 5 :type :fail :f :txn :value [[:append 0 40059]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 40060]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40053]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 6 40060]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 40061]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40062]]} + {:process 5 :type :fail :f :txn :value [[:append 7 40061]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 40063]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40062]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40064]]} + {:process 5 :type :fail :f :txn :value [[:append 5 40063]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 40065]]} + {:process 5 :type :fail :f :txn :value [[:append 2 40065]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 40066]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40064]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40067]]} + {:process 5 :type :fail :f :txn :value [[:append 0 40066]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 40068]]} + {:process 5 :type :fail :f :txn :value [[:append 1 40068]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 40069]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40067]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40070]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40070]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40071]]} + {:process 5 :type :fail :f :txn :value [[:append 7 40069]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 40072]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40071]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40073]]} + {:process 5 :type :fail :f :txn :value [[:append 4 40072]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 40074]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40073]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40075]]} + {:process 5 :type :fail :f :txn :value [[:append 2 40074]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 40076]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40075]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40077]]} + {:process 5 :type :fail :f :txn :value [[:append 3 40076]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40077]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 40078]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40079]]} + {:process 5 :type :fail :f :txn :value [[:append 1 40078]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 40080]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40079]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40081]]} + {:process 5 :type :fail :f :txn :value [[:append 6 40080]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 40082]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40081]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40083]]} + {:process 5 :type :fail :f :txn :value [[:append 4 40082]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 40084]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40083]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40085]]} + {:process 5 :type :fail :f :txn :value [[:append 5 40084]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40085]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 40086]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40087]]} + {:process 5 :type :fail :f :txn :value [[:append 3 40086]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 40088]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40087]]} + {:process 5 :type :fail :f :txn :value [[:append 0 40088]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 40090]]} + {:process 5 :type :fail :f :txn :value [[:append 6 40090]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 40091]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40089]]} + {:process 5 :type :fail :f :txn :value [[:append 7 40091]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 40092]]} + {:process 5 :type :fail :f :txn :value [[:append 5 40092]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 40093]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40089]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40094]]} + {:process 5 :type :fail :f :txn :value [[:append 2 40093]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 40095]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40094]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40096]]} + {:process 5 :type :fail :f :txn :value [[:append 0 40095]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 40097]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40096]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40098]]} + {:process 5 :type :fail :f :txn :value [[:append 1 40097]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 40099]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40098]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40100]]} + {:process 5 :type :fail :f :txn :value [[:append 7 40099]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 40101]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40100]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40102]]} + {:process 5 :type :fail :f :txn :value [[:append 4 40101]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 40103]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40102]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40104]]} + {:process 5 :type :fail :f :txn :value [[:append 2 40103]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 40105]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40104]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40106]]} + {:process 5 :type :fail :f :txn :value [[:append 3 40105]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 40107]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40106]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40108]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40108]]} + {:process 5 :type :fail :f :txn :value [[:append 1 40107]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 40109]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40110]]} + {:process 5 :type :fail :f :txn :value [[:append 6 40109]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 40111]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40110]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40112]]} + {:process 5 :type :fail :f :txn :value [[:append 4 40111]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 40113]]} + {:process 5 :type :fail :f :txn :value [[:append 5 40113]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 40114]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40112]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40115]]} + {:process 5 :type :fail :f :txn :value [[:append 3 40114]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 40116]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40115]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40117]]} + {:process 5 :type :fail :f :txn :value [[:append 0 40116]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 40118]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40117]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40119]]} + {:process 5 :type :fail :f :txn :value [[:append 6 40118]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 40120]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40119]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40121]]} + {:process 5 :type :fail :f :txn :value [[:append 7 40120]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 40122]]} + {:process 5 :type :fail :f :txn :value [[:append 5 40122]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 40123]]} + {:process 5 :type :fail :f :txn :value [[:append 2 40123]]} + {:process 5 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 40124]]} + {:process 5 :type :fail :f :txn :value [[:append 0 40124]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 40125]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40121]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:append 1 40125]]} + {:process 5 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40126]]} + {:process 5 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 40127]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40126]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40128]]} + {:process 5 :type :fail :f :txn :value [[:append 7 40127]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 40129]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40128]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40130]]} + {:process 5 :type :fail :f :txn :value [[:append 4 40129]]} + {:process 5 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40130]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40132]]} + {:process 5 :type :invoke :f :txn :value [[:append 2 40131]]} + {:process 5 :type :fail :f :txn :value [[:append 2 40131]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 40133]]} + {:process 5 :type :fail :f :txn :value [[:append 3 40133]]} + {:process 5 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40132]]} + {:process 5 :type :invoke :f :txn :value [[:append 1 40134]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40135]]} + {:process 5 :type :fail :f :txn :value [[:append 1 40134]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 40136]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40135]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40137]]} + {:process 5 :type :fail :f :txn :value [[:append 6 40136]]} + {:process 5 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 4 40138]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40137]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40139]]} + {:process 5 :type :fail :f :txn :value [[:append 4 40138]]} + {:process 5 :type :invoke :f :txn :value [[:append 5 40140]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40139]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40141]]} + {:process 5 :type :fail :f :txn :value [[:append 5 40140]]} + {:process 5 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40141]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 3 40142]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40143]]} + {:process 5 :type :fail :f :txn :value [[:append 3 40142]]} + {:process 5 :type :invoke :f :txn :value [[:append 0 40144]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40143]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40145]]} + {:process 5 :type :fail :f :txn :value [[:append 0 40144]]} + {:process 5 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 5 :type :invoke :f :txn :value [[:append 6 40146]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40145]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40147]]} + {:process 5 :type :fail :f :txn :value [[:append 6 40146]]} + {:process 5 :type :invoke :f :txn :value [[:append 7 40148]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40147]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40149]]} + {:process 5 :type :fail :f :txn :value [[:append 7 40148]]} + {:process 5 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 5 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40149]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40150]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40150]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40151]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40151]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40152]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40152]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40153]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40153]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40154]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40154]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40155]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40155]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40156]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40156]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40157]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40157]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40158]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40158]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40159]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40159]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40160]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40160]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40161]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40161]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40162]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40162]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40163]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40163]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40164]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40164]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40165]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40165]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40166]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40166]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40167]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40167]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40168]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40168]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40169]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40169]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40170]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40170]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40171]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40171]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40172]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40172]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40173]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40173]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40174]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40174]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40175]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40175]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40176]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40176]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40177]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40177]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40178]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40178]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40179]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40179]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40180]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40180]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40181]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40181]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40182]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40182]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40183]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40183]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40184]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40184]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40185]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40185]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40186]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40186]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40187]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40187]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40188]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40188]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40189]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40189]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40190]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40190]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40191]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40191]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40192]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40192]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40193]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40193]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40194]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40194]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40195]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40195]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40196]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40196]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40197]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40197]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40198]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40198]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40199]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40199]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40200]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40200]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40201]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40201]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40202]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40202]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40203]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40203]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40204]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40204]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40205]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40205]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40206]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40206]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40207]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40207]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40208]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40208]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40209]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40209]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40210]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40210]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40211]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40211]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40212]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40212]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40213]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40213]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40214]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40214]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40215]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40215]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40216]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40216]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40217]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40217]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40218]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40218]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40219]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40219]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40220]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40220]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40221]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40221]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40222]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40222]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40223]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40223]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40224]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40224]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40225]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40225]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40226]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40226]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40227]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40227]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40228]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40228]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40229]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40229]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40230]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40230]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40231]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40231]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40232]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40232]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40233]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40233]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40234]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40234]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40235]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40235]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40236]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40236]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40237]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40237]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40238]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40238]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40239]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40239]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40240]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40240]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40241]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40241]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40242]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40242]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40243]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40243]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40244]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40244]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40245]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40245]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40246]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40246]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40247]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40247]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40248]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40248]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40249]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40249]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40250]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40250]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40251]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40251]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40252]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40252]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40253]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40253]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40254]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40254]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40255]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40255]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40256]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40256]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40257]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40257]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40258]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40258]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40259]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40259]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40260]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40260]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40261]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40261]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40262]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40262]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40263]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40263]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40264]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40264]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40265]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40265]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40266]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40266]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40267]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40267]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40268]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40268]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40269]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40269]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40270]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40270]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40271]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40271]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40272]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40272]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40273]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40273]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40274]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40274]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40275]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40275]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40276]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40276]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40277]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40277]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40278]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40278]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40279]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40279]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40280]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40280]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40281]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40281]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40282]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40282]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40283]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40283]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40284]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40284]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40285]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40285]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40286]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40286]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40287]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40287]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40288]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40288]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40289]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40289]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40290]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40290]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40291]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40291]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40292]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40292]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40293]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40293]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40294]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40294]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40295]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40295]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40296]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40296]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40297]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40297]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40298]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40298]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40299]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40299]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40300]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40300]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40301]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40301]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40302]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40302]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40303]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40303]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40304]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40304]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40305]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40305]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40306]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40306]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40307]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40307]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40308]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40308]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40309]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40309]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40310]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40310]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40311]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40311]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40312]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40312]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40313]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40313]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40314]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40314]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40315]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40315]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40316]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40316]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40317]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40317]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40318]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40318]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40319]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40319]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40320]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40320]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40321]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40321]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40322]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40322]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40323]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40323]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40324]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40324]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40325]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40325]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40326]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40326]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40327]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40327]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40328]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40328]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40329]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40329]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40330]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40330]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40331]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40331]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40332]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40332]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40333]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40333]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40334]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40334]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40335]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40335]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40336]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40336]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40337]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40337]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40338]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40338]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40339]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40339]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40340]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40340]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40341]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40341]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40342]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40342]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40343]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40343]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40344]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40344]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40345]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40345]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40346]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40346]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40347]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40347]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40348]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40348]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40349]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40349]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40350]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40350]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40351]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40351]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40352]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40352]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40353]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40353]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40354]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40354]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40355]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40355]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40356]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40356]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40357]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40357]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40358]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40358]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40359]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40359]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40360]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40360]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40361]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40361]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40362]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40362]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40363]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40363]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40364]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40364]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40365]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40365]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40366]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40366]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40367]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40367]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40368]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40368]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40369]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40369]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40370]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40370]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40371]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40371]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40372]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40372]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40373]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40373]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40374]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40374]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40375]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40375]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40376]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40376]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40377]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40377]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40378]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40378]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40379]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40379]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40380]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40380]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40381]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40381]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40382]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40382]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40383]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40383]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40384]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40384]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40385]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40385]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40386]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40386]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40387]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40387]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40388]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40388]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40389]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40389]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40390]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40390]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40391]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40391]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40392]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40392]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40393]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40393]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40394]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40394]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40395]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40395]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40396]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40396]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40397]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40397]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40398]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40398]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40399]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40399]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40400]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40400]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40401]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40401]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40402]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40402]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40403]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40403]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40404]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40404]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40405]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40405]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40406]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40406]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40407]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40407]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40408]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40408]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40409]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40409]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40410]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40410]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40411]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40411]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40412]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40412]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40413]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40413]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40414]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40414]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40415]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40415]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40416]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40416]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40417]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40417]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40418]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40418]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40419]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40419]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40420]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40420]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40421]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40421]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40422]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40422]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40423]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40423]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40424]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40424]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40425]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40425]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40426]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40426]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40427]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40427]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40428]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40428]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40429]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40429]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40430]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40430]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40431]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40431]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40432]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40432]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40433]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40433]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40434]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40434]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40435]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40435]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40436]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40436]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40437]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40437]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40438]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40438]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40439]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40439]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40440]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40440]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40441]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40441]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40442]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40442]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40443]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40443]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40444]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40444]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40445]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40445]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40446]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40446]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40447]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40447]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40448]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40448]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40449]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40449]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40450]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40450]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40451]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40451]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40452]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40452]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40453]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40453]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40454]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40454]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40455]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40455]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40456]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40456]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40457]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40457]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40458]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40458]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40459]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40459]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40460]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40460]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40461]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40461]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40462]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40462]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40463]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40463]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40464]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40464]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40465]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40465]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40466]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40466]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40467]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40467]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40468]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40468]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40469]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40469]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40470]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40470]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40471]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40471]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40472]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40472]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40473]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40473]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40474]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40474]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40475]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40475]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40476]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40476]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40477]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40477]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40478]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40478]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40479]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40479]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40480]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40480]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40481]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40481]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40482]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40482]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40483]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40483]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40484]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40484]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40485]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40485]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40486]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40486]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40487]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40487]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40488]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40488]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40489]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40489]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40490]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40490]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40491]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40491]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40492]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40492]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40493]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40493]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40494]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40494]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40495]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40495]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40496]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40496]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40497]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40497]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40498]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40498]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40499]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40499]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40500]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40500]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40501]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40501]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40502]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40502]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40503]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40503]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40504]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40504]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40505]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40505]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40506]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40506]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40507]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40507]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40508]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40508]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40509]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40509]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40510]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40510]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40511]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40511]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40512]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40512]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40513]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40513]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40514]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40514]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40515]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40515]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40516]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40516]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40517]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40517]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40518]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40518]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40519]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40519]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40520]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40520]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40521]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40521]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40522]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40522]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40523]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40523]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40524]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40524]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40525]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40525]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40526]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40526]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40527]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40527]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40528]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40528]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40529]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40529]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40530]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40530]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40531]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40531]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40532]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40532]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40533]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40533]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40534]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40534]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40535]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40535]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40536]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40536]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40537]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40537]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40538]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40538]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40539]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40539]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40540]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40540]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40541]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40541]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40542]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40542]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40543]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40543]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40544]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40544]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40545]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40545]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40546]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40546]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40547]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40547]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40548]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40548]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40549]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40549]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40550]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40550]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40551]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40551]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40552]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40552]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40553]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40553]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40554]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40554]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40555]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40555]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40556]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40556]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40557]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40557]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40558]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40558]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40559]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40559]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40560]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40560]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40561]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40561]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40562]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40562]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40563]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40563]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40564]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40564]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40565]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40565]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40566]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40566]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40567]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40567]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40568]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40568]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40569]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40569]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40570]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40570]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40571]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40571]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40572]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40572]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40573]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40573]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40574]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40574]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40575]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40575]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40576]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40576]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40577]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40577]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40578]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40578]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40579]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40579]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40580]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40580]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40581]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40581]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40582]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40582]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40583]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40583]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40584]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40584]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40585]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40585]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40586]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40586]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40587]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40587]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40588]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40588]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40589]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40589]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40590]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40590]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40591]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40591]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40592]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40592]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40593]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40593]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40594]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40594]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40595]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40595]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40596]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40596]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40597]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40597]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40598]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40598]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40599]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40599]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40600]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40600]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40601]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40601]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40602]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40602]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40603]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40603]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40604]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40604]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40605]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40605]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40606]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40606]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40607]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40607]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40608]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40608]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40609]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40609]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40610]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40610]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40611]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40611]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40612]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40612]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40613]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40613]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40614]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40614]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40615]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40615]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40616]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40616]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40617]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40617]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40618]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40618]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40619]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40619]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40620]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40620]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40621]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40621]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40622]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40622]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40623]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40623]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40624]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40624]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40625]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40625]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40626]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40626]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40627]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40627]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40628]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40628]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40629]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40629]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40630]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40630]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40631]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40631]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40632]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40632]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40633]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40633]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40634]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40634]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40635]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40635]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40636]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40636]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40637]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40637]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40638]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40638]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40639]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40639]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40640]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40640]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40641]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40641]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40642]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40642]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40643]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40643]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40644]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40644]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40645]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40645]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40646]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40646]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40647]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40647]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40648]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40648]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40649]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40649]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40650]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40650]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40651]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40651]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40652]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40652]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40653]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40653]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40654]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40654]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40655]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40655]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40656]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40656]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40657]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40657]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40658]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40658]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40659]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40659]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40660]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40660]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40661]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40661]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40662]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40662]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40663]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40663]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40664]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40664]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40665]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40665]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40666]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40666]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40667]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40667]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40668]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40668]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40669]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40669]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40670]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40670]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40671]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40671]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40672]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40672]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40673]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40673]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40674]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40674]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40675]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40675]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40676]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40676]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40677]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40677]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40678]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40678]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40679]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40679]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40680]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40680]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40681]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40681]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40682]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40682]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40683]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40683]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40684]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40684]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40685]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40685]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40686]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40686]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40687]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40687]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40688]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40688]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40689]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40689]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40690]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40690]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40691]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40691]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40692]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40692]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40693]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40693]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40694]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40694]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40695]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40695]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40696]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40696]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40697]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40697]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40698]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40698]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40699]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40699]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40700]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40700]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40701]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40701]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40702]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40702]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40703]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40703]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40704]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40704]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40705]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40705]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40706]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40706]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40707]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40707]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40708]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40708]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40709]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40709]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40710]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40710]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40711]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40711]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40712]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40712]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40713]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40713]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40714]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40714]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40715]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40715]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40716]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40716]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40717]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40717]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40718]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40718]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40719]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40719]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40720]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40720]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40721]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40721]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40722]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40722]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40723]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40723]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40724]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40724]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40725]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40725]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40726]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40726]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40727]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40727]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40728]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40728]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40729]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40729]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40730]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40730]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40731]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40731]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40732]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40732]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40733]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40733]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40734]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40734]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40735]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40735]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40736]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40736]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40737]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40737]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40738]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40738]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40739]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40739]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40740]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40740]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40741]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40741]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40742]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40742]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40743]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40743]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40744]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40744]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40745]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40745]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40746]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40746]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40747]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40747]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40748]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40748]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40749]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40749]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40750]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40750]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40751]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40751]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40752]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40752]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40753]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40753]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40754]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40754]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40755]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40755]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40756]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40756]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40757]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40757]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40758]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40758]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40759]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40759]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40760]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40760]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40761]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40761]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40762]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40762]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40763]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40763]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40764]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40764]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40765]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40765]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40766]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40766]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40767]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40767]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40768]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40768]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40769]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40769]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40770]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40770]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40771]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40771]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40772]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40772]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40773]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40773]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40774]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40774]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40775]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40775]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40776]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40776]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40777]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40777]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40778]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40778]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40779]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40779]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40780]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40780]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40781]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40781]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40782]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40782]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40783]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40783]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40784]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40784]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40785]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40785]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40786]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40786]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40787]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40787]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40788]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40788]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40789]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40789]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40790]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40790]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40791]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40791]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40792]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40792]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40793]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40793]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40794]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40794]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40795]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40795]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40796]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40796]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40797]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40797]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40798]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40798]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40799]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40799]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40800]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40800]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40801]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40801]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40802]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40802]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40803]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40803]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40804]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40804]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40805]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40805]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40806]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40806]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40807]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40807]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40808]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40808]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40809]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40809]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40810]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40810]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40811]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40811]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40812]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40812]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40813]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40813]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40814]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40814]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40815]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40815]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40816]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40816]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40817]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40817]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40818]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40818]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40819]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40819]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40820]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40820]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40821]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40821]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40822]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40822]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40823]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40823]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40824]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40824]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40825]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40825]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40826]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40826]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40827]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40827]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40828]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40828]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40829]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40829]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40830]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40830]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40831]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40831]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40832]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40832]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40833]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40833]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40834]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40834]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40835]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40835]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40836]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40836]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40837]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40837]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40838]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40838]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40839]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40839]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40840]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40840]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40841]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40841]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40842]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40842]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40843]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40843]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40844]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40844]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40845]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40845]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40846]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40846]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40847]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40847]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40848]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40848]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40849]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40849]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40850]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40850]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40851]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40851]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40852]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40852]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40853]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40853]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40854]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40854]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40855]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40855]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40856]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40856]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40857]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40857]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40858]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40858]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40859]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40859]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40860]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40860]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40861]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40861]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40862]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40862]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40863]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40863]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40864]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40864]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40865]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40865]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40866]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40866]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40867]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40867]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40868]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40868]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40869]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40869]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40870]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40870]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40871]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40871]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40872]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40872]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40873]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40873]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40874]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40874]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40875]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40875]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40876]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40876]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40877]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40877]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40878]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40878]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40879]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40879]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40880]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40880]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40881]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40881]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40882]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40882]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40883]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40883]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40884]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40884]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40885]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40885]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40886]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40886]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40887]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40887]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40888]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40888]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40889]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40889]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40890]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40890]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40891]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40891]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40892]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40892]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40893]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40893]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40894]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40894]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40895]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40895]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40896]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40896]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40897]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40897]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40898]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40898]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40899]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40899]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40900]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40900]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40901]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40901]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40902]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40902]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40903]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40903]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40904]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40904]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40905]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40905]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40906]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40906]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40907]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40907]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40908]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40908]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40909]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40909]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40910]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40910]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40911]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40911]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40912]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40912]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40913]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40913]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40914]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40914]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40915]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40915]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40916]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40916]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40917]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40917]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40918]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40918]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40919]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40919]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40920]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40920]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40921]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40921]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40922]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40922]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40923]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40923]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40924]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40924]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40925]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40925]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40926]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40926]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40927]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40927]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40928]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40928]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40929]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40929]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40930]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40930]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40931]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40931]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40932]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40932]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40933]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40933]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40934]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40934]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40935]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40935]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40936]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40936]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40937]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40937]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40938]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40938]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40939]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40939]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40940]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40940]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40941]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40941]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40942]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40942]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40943]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40943]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40944]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40944]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40945]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40945]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40946]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40946]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40947]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40947]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40948]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40948]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40949]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40949]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40950]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40950]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40951]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40951]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40952]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40952]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40953]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40953]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40954]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40954]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40955]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40955]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40956]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40956]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40957]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40957]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40958]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40958]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40959]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40959]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40960]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40960]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40961]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40961]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40962]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40962]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40963]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40963]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40964]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40964]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40965]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40965]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40966]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40966]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40967]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40967]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40968]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40968]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40969]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40969]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40970]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40970]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40971]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40971]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40972]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40972]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40973]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40973]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40974]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40974]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40975]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40975]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40976]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40976]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40977]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40977]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40978]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40978]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40979]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40979]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40980]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40980]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40981]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40981]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40982]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40982]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40983]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40983]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40984]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40984]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40985]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40985]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40986]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40986]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40987]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40987]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40988]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40988]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40989]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40989]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 40990]]} + {:process 7 :type :fail :f :txn :value [[:append 3 40990]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40991]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40991]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 40992]]} + {:process 7 :type :fail :f :txn :value [[:append 6 40992]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40993]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40993]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 40994]]} + {:process 7 :type :fail :f :txn :value [[:append 1 40994]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 40995]]} + {:process 7 :type :fail :f :txn :value [[:append 2 40995]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 40996]]} + {:process 7 :type :fail :f :txn :value [[:append 4 40996]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 40997]]} + {:process 7 :type :fail :f :txn :value [[:append 5 40997]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 40998]]} + {:process 7 :type :fail :f :txn :value [[:append 7 40998]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 40999]]} + {:process 7 :type :fail :f :txn :value [[:append 0 40999]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41000]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41000]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41001]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41001]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41002]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41002]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41003]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41003]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41004]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41004]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41005]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41005]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41006]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41006]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41007]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41007]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41008]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41008]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41009]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41009]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41010]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41010]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41011]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41011]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41012]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41012]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41013]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41013]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41014]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41014]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41015]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41015]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41016]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41016]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41017]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41017]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41018]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41018]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41019]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41019]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41020]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41020]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41021]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41021]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41022]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41022]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41023]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41023]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41024]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41024]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41025]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41025]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41026]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41026]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41027]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41027]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41028]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41028]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41029]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41029]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41030]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41030]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41031]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41031]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41032]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41032]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41033]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41033]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41034]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41034]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41035]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41035]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41036]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41036]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41037]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41037]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41038]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41038]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41039]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41039]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41040]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41040]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41041]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41041]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41042]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41042]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41043]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41043]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41044]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41044]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41045]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41045]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41046]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41046]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41047]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41047]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41048]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41048]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41049]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41049]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41050]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41050]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41051]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41051]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41052]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41052]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41053]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41053]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41054]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41054]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41055]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41055]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41056]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41056]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41057]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41057]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41058]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41058]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41059]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41059]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41060]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41060]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41061]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41061]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41062]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41062]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41063]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41063]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41064]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41064]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41065]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41065]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41066]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41066]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41067]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41067]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41068]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41068]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41069]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41069]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41070]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41070]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41071]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41071]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41072]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41072]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41073]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41073]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41074]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41074]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41075]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41075]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41076]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41076]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41077]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41077]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41078]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41078]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41079]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41079]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41080]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41080]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41081]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41081]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41082]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41082]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41083]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41083]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41084]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41084]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41085]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41085]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41086]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41086]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41087]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41087]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41088]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41088]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41089]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41089]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41090]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41090]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41091]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41091]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41092]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41092]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41093]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41093]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41094]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41094]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41095]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41095]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41096]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41096]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41097]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41097]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41098]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41098]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41099]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41099]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41100]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41100]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41101]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41101]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41102]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41102]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41103]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41103]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41104]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41104]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41105]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41105]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41106]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41106]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41107]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41107]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41108]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41108]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41109]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41109]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41110]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41110]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41111]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41111]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41112]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41112]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41113]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41113]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41114]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41114]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41115]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41115]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41116]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41116]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41117]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41117]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41118]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41118]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41119]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41119]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41120]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41120]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41121]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41121]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41122]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41122]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41123]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41123]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41124]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41124]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41125]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41125]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41126]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41126]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41127]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41127]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41128]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41128]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41129]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41129]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41130]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41130]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41131]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41131]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41132]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41132]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41133]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41133]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41134]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41134]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41135]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41135]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41136]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41136]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41137]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41137]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41138]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41138]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41139]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41139]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41140]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41140]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41141]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41141]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41142]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41142]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41143]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41143]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41144]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41144]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41145]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41145]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41146]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41146]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41147]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41147]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41148]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41148]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41149]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41149]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41150]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41150]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41151]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41151]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41152]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41152]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41153]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41153]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41154]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41154]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41155]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41155]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41156]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41156]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41157]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41157]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41158]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41158]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41159]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41159]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41160]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41160]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41161]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41161]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41162]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41162]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41163]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41163]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41164]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41164]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41165]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41165]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41166]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41166]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41167]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41167]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41168]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41168]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41169]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41169]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41170]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41170]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41171]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41171]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41172]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41172]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41173]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41173]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41174]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41174]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41175]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41175]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41176]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41176]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41177]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41177]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41178]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41178]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41179]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41179]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41180]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41180]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41181]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41181]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41182]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41182]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41183]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41183]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41184]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41184]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41185]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41185]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41186]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41186]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41187]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41187]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41188]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41188]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41189]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41189]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41190]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41190]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41191]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41191]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41192]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41192]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41193]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41193]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41194]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41194]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41195]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41195]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41196]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41196]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41197]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41197]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41198]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41198]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41199]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41199]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41200]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41200]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41201]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41201]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41202]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41202]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41203]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41203]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41204]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41204]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41205]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41205]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41206]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41206]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41207]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41207]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41208]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41208]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41209]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41209]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41210]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41210]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41211]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41211]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41212]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41212]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41213]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41213]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41214]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41214]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41215]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41215]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41216]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41216]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41217]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41217]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41218]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41218]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41219]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41219]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41220]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41220]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41221]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41221]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41222]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41222]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41223]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41223]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41224]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41224]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41225]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41225]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41226]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41226]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41227]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41227]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41228]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41228]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41229]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41229]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41230]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41230]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41231]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41231]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41232]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41232]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41233]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41233]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41234]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41234]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41235]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41235]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41236]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41236]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41237]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41237]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41238]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41238]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41239]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41239]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41240]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41240]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41241]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41241]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41242]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41242]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41243]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41243]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41244]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41244]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41245]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41245]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41246]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41246]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41247]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41247]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41248]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41248]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41249]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41249]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41250]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41250]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41251]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41251]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41252]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41252]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41253]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41253]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41254]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41254]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41255]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41255]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41256]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41256]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41257]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41257]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41258]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41258]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41259]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41259]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41260]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41260]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41261]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41261]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41262]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41262]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41263]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41263]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41264]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41264]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41265]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41265]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41266]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41266]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41267]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41267]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41268]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41268]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41269]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41269]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41270]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41270]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41271]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41271]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41272]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41272]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41273]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41273]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41274]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41274]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41275]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41275]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41276]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41276]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41277]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41277]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41278]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41278]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41279]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41279]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41280]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41280]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41281]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41281]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41282]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41282]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41283]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41283]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41284]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41284]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41285]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41285]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41286]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41286]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41287]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41287]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41288]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41288]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41289]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41289]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41290]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41290]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41291]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41291]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41292]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41292]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41293]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41293]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41294]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41294]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41295]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41295]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41296]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41296]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41297]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41297]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41298]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41298]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41299]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41299]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41300]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41300]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41301]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41301]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41302]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41302]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41303]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41303]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41304]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41304]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41305]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41305]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41306]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41306]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41307]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41307]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41308]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41308]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41309]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41309]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41310]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41310]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41311]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41311]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41312]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41312]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41313]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41313]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41314]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41314]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41315]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41315]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41316]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41316]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41317]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41317]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41318]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41318]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41319]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41319]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41320]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41320]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41321]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41321]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41322]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41322]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41323]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41323]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41324]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41324]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41325]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41325]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41326]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41326]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41327]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41327]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41328]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41328]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41329]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41329]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41330]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41330]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41331]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41331]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41332]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41332]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41333]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41333]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41334]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41334]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41335]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41335]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41336]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41336]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41337]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41337]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41338]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41338]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41339]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41339]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41340]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41340]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41341]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41341]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41342]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41342]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41343]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41343]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41344]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41344]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41345]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41345]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41346]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41346]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41347]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41347]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41348]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41348]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41349]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41349]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41350]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41350]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41351]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41351]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41352]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41352]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41353]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41353]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41354]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41354]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41355]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41355]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41356]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41356]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41357]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41357]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41358]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41358]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41359]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41359]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41360]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41360]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41361]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41361]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41362]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41362]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41363]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41363]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41364]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41364]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41365]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41365]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41366]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41366]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41367]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41367]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41368]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41368]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41369]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41369]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41370]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41370]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41371]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41371]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41372]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41372]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41373]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41373]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41374]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41374]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41375]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41375]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41376]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41376]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41377]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41377]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41378]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41378]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41379]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41379]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41380]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41380]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41381]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41381]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41382]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41382]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41383]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41383]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41384]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41384]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41385]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41385]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41386]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41386]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41387]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41387]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41388]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41388]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41389]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41389]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41390]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41390]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41391]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41391]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41392]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41392]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41393]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41393]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41394]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41394]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41395]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41395]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41396]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41396]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41397]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41397]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41398]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41398]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41399]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41399]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41400]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41400]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41401]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41401]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41402]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41402]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41403]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41403]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41404]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41404]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41405]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41405]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41406]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41406]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41407]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41407]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41408]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41408]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41409]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41409]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41410]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41410]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41411]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41411]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41412]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41412]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41413]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41413]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41414]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41414]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41415]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41415]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41416]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41416]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41417]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41417]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41418]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41418]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41419]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41419]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41420]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41420]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41421]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41421]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41422]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41422]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41423]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41423]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41424]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41424]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41425]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41425]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41426]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41426]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41427]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41427]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41428]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41428]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41429]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41429]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41430]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41430]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41431]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41431]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41432]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41432]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41433]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41433]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41434]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41434]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41435]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41435]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41436]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41436]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41437]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41437]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41438]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41438]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41439]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41439]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41440]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41440]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41441]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41441]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41442]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41442]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41443]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41443]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41444]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41444]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41445]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41445]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41446]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41446]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41447]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41447]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41448]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41448]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41449]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41449]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41450]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41450]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41451]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41451]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41452]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41452]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41453]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41453]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41454]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41454]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41455]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41455]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41456]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41456]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41457]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41457]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41458]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41458]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41459]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41459]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41460]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41460]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41461]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41461]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41462]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41462]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41463]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41463]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41464]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41464]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41465]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41465]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41466]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41466]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41467]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41467]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41468]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41468]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41469]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41469]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41470]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41470]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41471]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41471]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41472]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41472]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41473]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41473]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41474]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41474]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41475]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41475]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41476]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41476]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41477]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41477]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41478]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41478]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41479]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41479]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41480]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41480]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41481]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41481]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41482]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41482]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41483]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41483]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41484]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41484]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41485]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41485]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41486]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41486]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41487]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41487]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41488]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41488]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41489]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41489]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41490]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41490]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41491]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41491]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41492]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41492]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41493]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41493]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41494]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41494]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41495]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41495]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41496]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41496]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41497]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41497]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41498]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41498]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41499]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41499]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41500]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41500]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41501]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41501]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41502]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41502]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41503]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41503]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41504]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41504]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41505]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41505]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41506]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41506]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41507]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41507]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41508]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41508]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41509]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41509]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41510]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41510]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41511]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41511]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41512]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41512]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41513]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41513]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41514]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41514]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41515]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41515]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41516]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41516]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41517]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41517]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41518]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41518]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41519]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41519]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41520]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41520]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41521]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41521]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41522]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41522]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41523]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41523]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41524]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41524]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41525]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41525]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41526]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41526]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41527]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41527]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41528]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41528]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41529]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41529]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41530]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41530]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41531]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41531]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41532]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41532]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41533]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41533]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41534]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41534]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41535]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41535]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41536]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41536]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41537]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41537]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41538]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41538]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41539]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41539]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41540]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41540]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41541]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41541]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41542]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41542]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41543]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41543]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41544]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41544]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41545]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41545]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41546]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41546]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41547]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41547]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41548]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41548]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41549]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41549]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41550]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41550]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41551]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41551]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41552]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41552]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41553]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41553]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41554]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41554]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41555]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41555]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41556]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41556]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41557]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41557]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41558]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41558]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41559]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41559]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41560]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41560]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41561]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41561]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41562]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41562]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41563]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41563]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41564]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41564]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41565]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41565]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41566]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41566]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41567]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41567]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41568]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41568]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41569]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41569]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41570]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41570]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41571]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41571]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41572]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41572]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41573]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41573]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41574]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41574]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41575]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41575]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41576]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41576]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41577]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41577]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41578]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41578]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41579]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41579]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41580]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41580]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41581]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41581]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41582]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41582]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41583]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41583]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41584]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41584]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41585]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41585]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41586]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41586]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41587]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41587]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41588]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41588]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41589]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41589]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41590]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41590]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41591]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41591]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41592]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41592]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41593]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41593]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41594]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41594]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41595]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41595]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41596]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41596]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41597]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41597]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41598]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41598]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41599]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41599]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41600]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41600]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41601]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41601]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41602]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41602]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41603]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41603]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41604]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41604]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41605]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41605]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41606]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41606]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41607]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41607]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41608]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41608]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41609]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41609]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41610]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41610]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41611]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41611]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41612]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41612]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41613]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41613]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41614]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41614]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41615]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41615]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41616]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41616]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41617]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41617]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41618]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41618]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41619]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41619]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41620]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41620]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41621]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41621]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41622]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41622]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41623]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41623]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41624]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41624]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41625]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41625]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41626]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41626]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41627]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41627]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41628]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41628]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41629]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41629]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41630]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41630]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41631]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41631]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41632]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41632]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41633]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41633]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41634]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41634]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41635]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41635]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41636]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41636]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41637]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41637]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41638]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41638]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41639]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41639]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41640]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41640]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41641]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41641]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41642]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41642]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41643]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41643]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41644]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41644]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41645]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41645]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41646]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41646]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41647]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41647]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41648]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41648]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41649]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41649]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41650]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41650]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41651]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41651]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41652]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41652]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41653]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41653]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41654]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41654]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41655]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41655]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41656]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41656]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41657]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41657]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41658]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41658]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41659]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41659]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41660]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41660]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41661]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41661]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41662]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41662]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41663]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41663]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41664]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41664]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41665]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41665]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41666]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41666]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41667]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41667]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41668]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41668]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41669]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41669]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41670]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41670]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41671]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41671]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41672]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41672]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41673]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41673]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41674]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41674]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41675]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41675]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41676]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41676]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41677]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41677]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41678]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41678]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41679]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41679]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41680]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41680]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41681]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41681]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41682]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41682]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41683]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41683]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41684]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41684]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41685]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41685]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41686]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41686]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41687]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41687]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41688]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41688]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41689]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41689]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41690]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41690]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41691]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41691]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41692]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41692]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41693]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41693]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41694]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41694]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41695]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41695]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41696]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41696]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41697]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41697]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41698]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41698]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41699]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41699]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41700]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41700]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41701]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41701]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41702]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41702]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41703]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41703]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41704]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41704]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41705]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41705]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41706]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41706]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41707]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41707]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41708]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41708]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41709]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41709]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41710]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41710]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41711]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41711]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41712]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41712]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41713]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41713]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41714]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41714]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41715]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41715]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41716]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41716]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41717]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41717]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41718]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41718]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41719]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41719]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41720]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41720]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41721]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41721]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41722]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41722]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41723]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41723]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41724]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41724]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41725]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41725]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41726]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41726]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41727]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41727]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41728]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41728]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41729]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41729]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41730]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41730]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41731]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41731]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41732]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41732]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41733]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41733]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41734]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41734]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41735]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41735]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41736]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41736]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41737]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41737]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41738]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41738]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41739]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41739]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41740]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41740]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41741]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41741]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41742]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41742]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41743]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41743]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41744]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41744]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41745]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41745]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41746]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41746]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41747]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41747]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41748]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41748]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41749]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41749]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41750]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41750]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41751]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41751]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41752]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41752]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41753]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41753]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41754]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41754]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41755]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41755]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41756]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41756]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41757]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41757]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41758]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41758]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41759]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41759]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41760]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41760]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41761]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41761]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41762]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41762]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41763]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41763]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41764]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41764]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41765]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41765]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41766]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41766]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41767]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41767]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41768]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41768]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41769]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41769]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41770]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41770]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41771]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41771]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41772]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41772]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41773]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41773]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41774]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41774]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41775]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41775]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41776]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41776]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41777]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41777]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41778]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41778]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41779]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41779]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41780]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41780]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41781]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41781]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41782]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41782]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41783]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41783]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41784]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41784]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41785]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41785]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41786]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41786]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41787]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41787]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41788]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41788]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41789]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41789]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41790]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41790]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41791]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41791]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41792]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41792]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41793]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41793]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41794]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41794]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41795]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41795]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41796]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41796]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41797]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41797]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41798]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41798]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41799]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41799]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41800]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41800]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41801]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41801]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41802]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41802]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41803]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41803]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41804]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41804]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41805]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41805]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41806]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41806]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41807]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41807]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41808]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41808]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41809]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41809]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41810]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41810]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41811]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41811]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41812]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41812]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41813]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41813]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41814]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41814]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41815]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41815]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41816]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41816]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41817]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41817]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41818]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41818]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41819]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41819]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41820]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41820]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41821]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41821]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41822]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41822]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41823]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41823]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41824]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41824]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41825]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41825]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41826]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41826]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41827]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41827]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41828]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41828]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41829]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41829]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41830]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41830]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41831]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41831]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41832]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41832]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41833]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41833]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41834]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41834]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41835]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41835]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41836]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41836]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41837]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41837]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41838]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41838]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41839]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41839]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41840]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41840]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41841]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41841]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41842]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41842]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41843]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41843]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41844]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41844]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41845]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41845]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41846]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41846]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41847]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41847]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41848]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41848]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41849]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41849]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41850]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41850]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41851]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41851]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41852]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41852]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41853]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41853]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41854]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41854]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41855]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41855]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41856]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41856]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41857]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41857]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41858]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41858]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41859]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41859]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41860]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41860]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41861]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41861]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41862]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41862]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41863]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41863]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41864]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41864]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41865]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41865]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41866]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41866]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41867]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41867]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41868]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41868]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41869]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41869]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41870]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41870]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41871]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41871]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41872]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41872]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41873]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41873]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41874]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41874]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41875]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41875]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41876]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41876]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41877]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41877]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41878]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41878]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41879]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41879]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41880]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41880]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41881]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41881]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41882]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41882]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41883]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41883]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41884]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41884]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41885]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41885]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41886]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41886]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41887]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41887]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41888]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41888]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41889]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41889]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41890]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41890]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41891]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41891]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41892]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41892]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41893]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41893]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41894]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41894]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41895]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41895]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41896]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41896]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41897]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41897]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41898]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41898]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41899]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41899]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41900]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41900]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41901]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41901]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41902]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41902]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41903]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41903]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41904]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41904]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41905]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41905]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41906]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41906]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41907]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41907]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41908]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41908]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41909]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41909]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41910]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41910]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41911]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41911]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41912]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41912]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41913]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41913]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41914]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41914]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41915]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41915]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41916]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41916]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41917]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41917]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41918]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41918]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41919]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41919]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41920]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41920]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41921]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41921]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41922]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41922]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41923]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41923]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41924]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41924]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41925]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41925]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41926]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41926]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41927]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41927]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41928]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41928]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41929]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41929]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41930]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41930]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41931]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41931]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41932]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41932]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41933]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41933]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41934]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41934]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41935]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41935]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41936]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41936]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41937]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41937]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41938]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41938]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41939]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41939]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41940]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41940]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41941]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41941]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41942]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41942]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41943]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41943]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41944]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41944]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41945]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41945]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41946]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41946]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41947]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41947]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41948]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41948]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41949]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41949]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41950]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41950]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41951]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41951]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41952]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41952]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41953]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41953]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41954]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41954]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41955]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41955]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41956]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41956]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41957]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41957]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41958]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41958]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41959]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41959]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41960]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41960]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41961]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41961]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41962]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41962]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41963]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41963]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41964]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41964]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41965]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41965]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41966]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41966]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41967]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41967]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41968]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41968]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41969]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41969]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41970]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41970]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41971]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41971]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41972]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41972]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41973]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41973]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41974]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41974]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41975]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41975]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41976]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41976]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41977]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41977]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41978]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41978]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41979]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41979]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41980]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41980]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41981]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41981]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41982]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41982]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41983]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41983]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41984]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41984]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41985]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41985]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41986]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41986]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41987]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41987]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41988]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41988]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41989]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41989]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 41990]]} + {:process 7 :type :fail :f :txn :value [[:append 7 41990]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41991]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41991]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 41992]]} + {:process 7 :type :fail :f :txn :value [[:append 2 41992]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41993]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41993]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 41994]]} + {:process 7 :type :fail :f :txn :value [[:append 5 41994]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 41995]]} + {:process 7 :type :fail :f :txn :value [[:append 6 41995]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 41996]]} + {:process 7 :type :fail :f :txn :value [[:append 0 41996]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 41997]]} + {:process 7 :type :fail :f :txn :value [[:append 1 41997]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 41998]]} + {:process 7 :type :fail :f :txn :value [[:append 3 41998]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 41999]]} + {:process 7 :type :fail :f :txn :value [[:append 4 41999]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42000]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42000]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42001]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42001]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42002]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42002]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42003]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42003]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42004]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42004]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42005]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42005]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42006]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42006]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42007]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42007]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42008]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42008]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42009]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42009]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42010]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42010]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42011]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42011]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42012]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42012]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42013]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42013]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42014]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42014]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42015]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42015]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42016]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42016]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42017]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42017]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42018]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42018]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42019]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42019]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42020]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42020]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42021]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42021]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42022]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42022]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42023]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42023]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42024]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42024]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42025]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42025]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42026]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42026]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42027]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42027]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42028]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42028]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42029]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42029]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42030]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42030]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42031]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42031]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42032]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42032]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42033]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42033]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42034]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42034]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42035]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42035]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42036]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42036]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42037]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42037]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42038]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42038]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42039]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42039]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42040]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42040]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42041]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42041]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42042]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42042]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42043]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42043]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42044]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42044]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42045]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42045]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42046]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42046]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42047]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42047]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42048]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42048]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42049]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42049]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42050]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42050]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42051]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42051]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42052]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42052]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42053]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42053]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42054]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42054]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42055]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42055]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42056]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42056]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42057]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42057]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42058]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42058]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42059]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42059]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42060]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42060]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42061]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42061]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42062]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42062]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42063]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42063]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42064]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42064]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42065]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42065]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42066]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42066]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42067]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42067]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42068]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42068]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42069]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42069]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42070]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42070]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42071]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42071]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42072]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42072]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42073]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42073]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42074]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42074]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42075]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42075]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42076]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42076]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42077]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42077]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42078]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42078]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42079]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42079]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42080]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42080]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42081]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42081]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42082]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42082]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42083]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42083]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42084]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42084]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42085]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42085]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42086]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42086]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42087]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42087]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42088]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42088]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42089]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42089]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42090]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42090]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42091]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42091]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42092]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42092]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42093]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42093]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42094]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42094]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42095]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42095]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42096]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42096]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42097]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42097]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42098]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42098]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42099]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42099]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42100]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42100]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42101]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42101]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42102]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42102]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42103]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42103]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42104]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42104]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42105]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42105]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42106]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42106]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42107]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42107]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42108]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42108]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42109]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42109]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42110]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42110]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42111]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42111]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42112]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42112]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42113]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42113]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42114]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42114]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42115]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42115]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42116]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42116]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42117]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42117]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42118]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42118]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42119]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42119]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42120]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42120]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42121]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42121]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42122]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42122]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42123]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42123]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42124]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42124]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42125]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42125]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42126]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42126]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42127]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42127]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42128]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42128]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42129]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42129]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42130]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42130]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42131]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42131]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42132]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42132]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42133]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42133]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42134]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42134]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42135]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42135]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42136]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42136]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42137]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42137]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42138]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42138]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42139]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42139]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42140]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42140]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42141]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42141]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42142]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42142]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42143]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42143]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42144]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42144]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42145]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42145]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42146]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42146]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42147]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42147]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42148]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42148]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42149]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42149]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42150]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42150]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42151]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42151]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42152]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42152]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42153]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42153]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42154]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42154]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42155]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42155]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42156]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42156]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42157]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42157]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42158]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42158]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42159]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42159]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42160]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42160]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42161]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42161]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42162]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42162]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42163]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42163]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42164]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42164]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42165]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42165]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42166]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42166]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42167]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42167]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42168]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42168]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42169]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42169]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42170]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42170]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42171]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42171]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42172]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42172]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42173]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42173]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42174]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42174]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42175]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42175]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42176]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42176]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42177]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42177]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42178]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42178]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42179]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42179]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42180]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42180]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42181]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42181]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42182]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42182]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42183]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42183]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42184]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42184]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42185]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42185]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42186]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42186]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42187]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42187]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42188]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42188]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42189]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42189]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42190]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42190]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42191]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42191]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42192]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42192]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42193]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42193]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42194]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42194]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42195]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42195]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42196]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42196]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42197]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42197]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42198]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42198]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42199]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42199]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42200]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42200]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42201]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42201]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42202]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42202]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42203]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42203]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42204]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42204]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42205]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42205]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42206]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42206]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42207]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42207]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42208]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42208]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42209]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42209]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42210]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42210]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42211]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42211]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42212]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42212]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42213]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42213]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42214]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42214]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42215]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42215]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42216]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42216]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42217]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42217]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42218]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42218]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42219]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42219]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42220]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42220]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42221]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42221]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42222]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42222]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42223]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42223]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42224]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42224]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42225]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42225]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42226]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42226]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42227]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42227]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42228]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42228]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42229]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42229]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42230]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42230]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42231]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42231]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42232]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42232]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42233]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42233]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42234]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42234]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42235]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42235]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42236]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42236]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42237]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42237]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42238]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42238]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42239]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42239]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42240]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42240]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42241]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42241]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42242]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42242]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42243]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42243]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42244]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42244]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42245]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42245]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42246]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42246]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42247]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42247]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42248]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42248]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42249]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42249]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42250]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42250]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42251]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42251]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42252]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42252]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42253]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42253]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42254]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42254]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42255]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42255]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42256]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42256]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42257]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42257]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42258]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42258]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42259]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42259]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42260]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42260]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42261]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42261]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42262]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42262]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42263]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42263]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42264]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42264]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42265]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42265]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42266]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42266]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42267]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42267]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42268]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42268]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42269]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42269]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42270]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42270]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42271]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42271]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42272]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42272]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42273]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42273]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42274]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42274]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42275]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42275]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42276]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42276]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42277]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42277]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42278]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42278]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42279]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42279]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42280]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42280]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42281]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42281]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42282]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42282]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42283]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42283]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42284]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42284]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42285]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42285]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42286]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42286]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42287]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42287]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42288]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42288]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42289]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42289]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42290]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42290]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42291]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42291]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42292]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42292]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42293]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42293]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42294]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42294]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42295]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42295]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42296]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42296]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42297]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42297]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42298]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42298]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42299]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42299]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42300]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42300]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42301]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42301]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42302]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42302]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42303]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42303]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42304]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42304]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42305]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42305]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42306]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42306]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42307]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42307]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42308]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42308]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42309]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42309]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42310]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42310]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42311]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42311]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42312]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42312]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42313]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42313]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42314]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42314]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42315]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42315]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42316]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42316]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42317]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42317]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42318]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42318]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42319]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42319]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42320]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42320]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42321]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42321]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42322]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42322]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42323]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42323]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42324]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42324]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42325]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42325]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42326]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42326]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42327]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42327]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42328]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42328]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42329]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42329]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42330]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42330]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42331]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42331]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42332]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42332]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42333]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42333]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42334]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42334]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42335]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42335]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42336]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42336]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42337]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42337]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42338]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42338]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42339]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42339]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42340]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42340]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42341]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42341]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42342]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42342]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42343]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42343]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42344]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42344]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42345]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42345]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42346]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42346]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42347]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42347]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42348]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42348]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42349]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42349]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42350]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42350]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42351]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42351]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42352]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42352]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42353]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42353]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42354]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42354]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42355]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42355]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42356]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42356]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42357]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42357]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42358]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42358]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42359]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42359]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42360]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42360]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42361]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42361]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42362]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42362]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42363]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42363]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42364]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42364]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42365]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42365]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42366]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42366]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42367]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42367]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42368]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42368]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42369]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42369]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42370]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42370]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42371]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42371]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42372]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42372]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42373]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42373]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42374]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42374]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42375]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42375]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42376]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42376]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42377]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42377]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42378]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42378]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42379]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42379]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42380]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42380]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42381]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42381]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42382]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42382]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42383]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42383]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42384]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42384]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42385]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42385]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42386]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42386]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42387]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42387]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42388]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42388]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42389]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42389]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42390]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42390]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42391]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42391]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42392]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42392]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42393]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42393]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42394]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42394]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42395]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42395]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42396]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42396]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42397]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42397]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42398]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42398]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42399]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42399]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42400]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42400]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42401]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42401]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42402]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42402]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42403]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42403]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42404]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42404]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42405]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42405]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42406]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42406]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42407]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42407]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42408]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42408]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42409]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42409]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42410]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42410]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42411]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42411]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42412]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42412]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42413]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42413]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42414]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42414]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42415]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42415]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42416]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42416]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42417]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42417]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42418]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42418]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42419]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42419]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42420]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42420]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42421]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42421]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42422]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42422]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42423]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42423]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42424]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42424]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42425]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42425]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42426]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42426]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42427]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42427]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42428]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42428]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42429]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42429]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42430]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42430]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42431]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42431]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42432]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42432]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42433]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42433]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42434]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42434]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42435]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42435]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42436]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42436]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42437]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42437]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42438]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42438]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42439]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42439]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42440]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42440]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42441]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42441]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42442]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42442]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42443]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42443]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42444]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42444]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42445]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42445]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42446]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42446]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42447]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42447]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42448]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42448]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42449]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42449]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42450]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42450]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42451]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42451]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42452]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42452]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42453]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42453]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42454]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42454]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42455]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42455]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42456]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42456]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42457]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42457]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42458]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42458]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42459]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42459]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42460]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42460]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42461]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42461]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42462]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42462]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42463]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42463]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42464]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42464]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42465]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42465]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42466]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42466]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42467]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42467]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42468]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42468]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42469]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42469]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42470]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42470]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42471]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42471]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42472]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42472]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42473]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42473]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42474]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42474]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42475]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42475]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42476]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42476]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42477]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42477]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42478]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42478]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42479]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42479]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42480]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42480]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42481]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42481]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42482]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42482]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42483]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42483]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42484]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42484]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42485]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42485]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42486]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42486]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42487]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42487]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42488]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42488]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42489]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42489]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42490]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42490]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42491]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42491]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42492]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42492]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42493]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42493]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42494]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42494]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42495]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42495]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42496]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42496]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42497]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42497]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42498]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42498]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42499]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42499]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42500]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42500]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42501]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42501]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42502]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42502]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42503]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42503]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42504]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42504]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42505]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42505]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42506]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42506]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42507]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42507]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42508]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42508]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42509]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42509]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42510]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42510]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42511]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42511]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42512]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42512]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42513]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42513]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42514]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42514]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42515]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42515]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42516]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42516]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42517]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42517]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42518]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42518]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42519]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42519]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42520]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42520]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42521]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42521]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42522]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42522]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42523]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42523]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42524]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42524]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42525]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42525]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42526]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42526]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42527]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42527]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42528]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42528]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42529]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42529]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42530]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42530]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42531]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42531]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42532]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42532]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42533]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42533]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42534]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42534]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42535]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42535]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42536]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42536]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42537]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42537]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42538]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42538]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42539]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42539]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42540]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42540]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42541]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42541]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42542]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42542]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42543]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42543]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42544]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42544]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42545]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42545]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42546]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42546]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42547]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42547]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42548]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42548]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42549]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42549]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42550]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42550]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42551]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42551]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42552]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42552]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42553]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42553]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42554]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42554]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42555]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42555]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42556]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42556]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42557]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42557]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42558]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42558]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42559]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42559]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42560]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42560]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42561]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42561]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42562]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42562]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42563]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42563]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42564]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42564]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42565]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42565]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42566]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42566]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42567]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42567]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42568]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42568]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42569]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42569]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42570]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42570]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42571]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42571]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42572]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42572]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42573]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42573]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42574]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42574]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42575]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42575]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42576]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42576]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42577]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42577]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42578]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42578]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42579]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42579]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42580]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42580]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42581]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42581]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42582]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42582]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42583]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42583]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42584]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42584]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42585]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42585]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42586]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42586]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42587]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42587]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42588]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42588]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42589]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42589]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42590]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42590]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42591]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42591]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42592]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42592]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42593]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42593]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42594]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42594]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42595]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42595]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42596]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42596]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42597]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42597]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42598]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42598]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42599]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42599]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42600]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42600]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42601]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42601]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42602]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42602]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42603]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42603]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42604]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42604]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42605]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42605]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42606]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42606]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42607]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42607]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42608]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42608]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42609]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42609]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42610]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42610]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42611]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42611]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42612]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42612]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42613]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42613]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42614]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42614]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42615]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42615]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42616]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42616]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42617]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42617]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42618]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42618]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42619]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42619]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42620]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42620]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42621]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42621]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42622]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42622]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42623]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42623]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42624]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42624]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42625]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42625]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42626]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42626]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42627]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42627]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42628]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42628]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42629]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42629]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42630]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42630]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42631]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42631]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42632]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42632]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42633]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42633]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42634]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42634]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42635]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42635]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42636]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42636]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42637]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42637]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42638]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42638]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42639]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42639]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42640]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42640]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42641]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42641]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42642]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42642]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42643]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42643]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42644]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42644]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42645]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42645]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42646]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42646]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42647]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42647]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42648]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42648]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42649]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42649]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42650]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42650]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42651]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42651]]} + {:process 7 :type :invoke :f :txn :value [[:r 7 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 7 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42652]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42652]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42653]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42653]]} + {:process 7 :type :invoke :f :txn :value [[:r 2 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 2 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42654]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42654]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42655]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42655]]} + {:process 7 :type :invoke :f :txn :value [[:r 5 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 5 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42656]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42656]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42657]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42657]]} + {:process 7 :type :invoke :f :txn :value [[:r 0 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 0 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 1 42658]]} + {:process 7 :type :fail :f :txn :value [[:append 1 42658]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42659]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42659]]} + {:process 7 :type :invoke :f :txn :value [[:r 3 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 3 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 4 42660]]} + {:process 7 :type :fail :f :txn :value [[:append 4 42660]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42661]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42661]]} + {:process 7 :type :invoke :f :txn :value [[:r 6 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 6 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 7 42662]]} + {:process 7 :type :fail :f :txn :value [[:append 7 42662]]} + {:process 7 :type :invoke :f :txn :value [[:append 0 42663]]} + {:process 7 :type :fail :f :txn :value [[:append 0 42663]]} + {:process 7 :type :invoke :f :txn :value [[:r 1 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 1 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 2 42664]]} + {:process 7 :type :fail :f :txn :value [[:append 2 42664]]} + {:process 7 :type :invoke :f :txn :value [[:append 3 42665]]} + {:process 7 :type :fail :f :txn :value [[:append 3 42665]]} + {:process 7 :type :invoke :f :txn :value [[:r 4 nil]]} + {:process 7 :type :fail :f :txn :value [[:r 4 nil]]} + {:process 7 :type :invoke :f :txn :value [[:append 5 42666]]} + {:process 7 :type :fail :f :txn :value [[:append 5 42666]]} + {:process 7 :type :invoke :f :txn :value [[:append 6 42667]]} + {:process 7 :type :fail :f :txn :value [[:append 6 42667]]} ] diff --git a/ferrosa-jepsen/examples/elle_list_append.rs b/ferrosa-jepsen/examples/elle_list_append.rs index 5643ab08..7496c239 100644 --- a/ferrosa-jepsen/examples/elle_list_append.rs +++ b/ferrosa-jepsen/examples/elle_list_append.rs @@ -23,7 +23,7 @@ use std::sync::atomic::{AtomicU64, Ordering}; use std::sync::{Arc, Mutex}; -use anyhow::{Context, Result}; +use anyhow::Result; use scylla::client::execution_profile::ExecutionProfile; use scylla::client::session::Session; use scylla::client::session_builder::SessionBuilder; @@ -66,15 +66,26 @@ async fn main() -> Result<()> { .known_nodes([&contact]) .build() .await?; - let target = probe - .get_cluster_state() - .get_nodes_info() - .iter() - .min_by_key(|n| n.host_id) - .cloned() - .context("no known nodes")?; + // ALL nodes, in a stable order, so workers spread across the cluster. + // + // This used to be `min_by_key(host_id)` — one node coordinated 100% of the + // workload. Two consequences, both bad: + // - a fault that takes out that node removes ALL traffic, so a rejoining + // node has nothing to be tested against (which made the coordinator + // restart fault in certify-nemesis.sh unable to produce evidence); + // - concurrent transactions were only ever coordinated by ONE node, so + // cross-coordinator Accord ordering — precisely where disagreements + // would show up — went unexercised by the certification. + let mut nodes: Vec<_> = probe.get_cluster_state().get_nodes_info().to_vec(); + nodes.sort_by_key(|n| n.host_id); + if nodes.is_empty() { + anyhow::bail!("no known nodes"); + } + eprintln!("pinning {workers} workers across {} node(s)", nodes.len()); + let target = nodes[0].clone(); drop(probe); + // Schema setup runs on ONE session; only the workers spread. let session = Arc::new(connect_pinned(&contact, &target).await?); // Fresh schema. RF=3 so cluster mode is active and reads route through Accord. @@ -104,7 +115,10 @@ async fn main() -> Result<()> { let mut handles = Vec::new(); for w in 0..workers { - // Each worker gets its OWN pinned connection ⇒ its own transaction state. + // Each worker gets its OWN pinned connection ⇒ its own transaction state, + // and workers round-robin across nodes so no single node carries the + // whole workload. + let target = nodes[(w as usize) % nodes.len()].clone(); let mut session = Arc::new(connect_pinned(&contact, &target).await?); let history = history.clone(); let next_val = next_val.clone(); @@ -199,17 +213,41 @@ async fn main() -> Result<()> { .or_insert(0) += 1; // Best-effort abort of the (possibly still-open) txn by id // so a lingering entry cannot block this connection's next - // BEGIN via the shim binding. Reconnect only if even that - // fails. If BEGIN itself failed there is no id to roll back. - if let Some(id) = txn_id_opt { - if session + // BEGIN via the shim binding. If BEGIN itself failed there + // is no id to roll back. + let rollback_failed = match &txn_id_opt { + Some(id) => session .query_unpaged(format!("ROLLBACK TRANSACTION {id}"), &[]) .await - .is_err() - { - if let Ok(fresh) = connect_pinned(&contact, &target).await { - session = Arc::new(fresh); - } + .is_err(), + None => false, + }; + + // Replace a DEAD SESSION regardless of which statement + // failed. + // + // This used to live inside `if let Some(id)`, so a session + // was only ever replaced when BEGIN had already SUCCEEDED. + // That is exactly backwards: when the connection dies, + // BEGIN is the statement that fails, so there is no txn id + // and the broken session was never replaced. The worker + // then spun its entire remaining op budget against a corpse. + // + // Measured cost of that gap on a fault-injected run: 38,543 + // of 61,564 failures were `BEGIN: No connections in the + // pool: The pool is broken`, i.e. one network disruption + // early in the run permanently killed every worker and left + // Elle checking a history that was 96% connection errors — + // a vacuous `valid? true`. + // + // Earlier certifications never hit this because the + // generator ran ON the coordinator against localhost, which + // survives peer-level ip6tables rules. Any off-node + // generator (needed to fault-inject the coordinator itself) + // depends on this reconnect. + if rollback_failed || is_session_dead(&why) { + if let Ok(fresh) = connect_pinned(&contact, &target).await { + session = Arc::new(fresh); } } failures.fetch_add(1, Ordering::Relaxed); @@ -248,7 +286,21 @@ async fn main() -> Result<()> { edn_txn(w, ":ok", ":txn", &format!("[[:r {k} [{elems}]]]")), ); } - Err(_) => { + Err(e) => { + // Reads need the same dead-session handling as appends, + // and for the same reason: a broken pool otherwise fails + // every remaining read for the rest of the run. + let why = format!("READ: {e}"); + *errors + .lock() + .unwrap() + .entry(normalize_err(":fail", &why)) + .or_insert(0) += 1; + if is_session_dead(&why) { + if let Ok(fresh) = connect_pinned(&contact, &target).await { + session = Arc::new(fresh); + } + } failures.fetch_add(1, Ordering::Relaxed); log( &history, @@ -327,6 +379,26 @@ fn log(history: &Arc>>, e: Event) { /// Collapse a failure to a stable category so similar errors tally together: /// the op kind plus the message with digit runs replaced by `#` (partition keys, +/// Does this failure mean the SESSION itself is unusable, rather than the single +/// statement having failed? +/// +/// A dead session must be replaced or the worker issues every remaining op +/// against a broken pool. The scylla driver surfaces these as connection/pool +/// errors; a server-side rejection (invalid query, insufficient replicas) leaves +/// the session perfectly usable and must NOT trigger a reconnect, since +/// needlessly rebuilding a session mid-run would discard transaction state that +/// the pinned-connection model depends on. +fn is_session_dead(why: &str) -> bool { + let w = why.to_ascii_lowercase(); + w.contains("pool is broken") + || w.contains("no connections in the pool") + || w.contains("connection broken") + || w.contains("connection refused") + || w.contains("connection reset") + || w.contains("broken pipe") + || w.contains("failed to read the frame header") +} + /// timestamps, node ids vary per op but the failure class does not) and /// truncated. Only digits are replaced, so error words stay readable. fn normalize_err(kind: &str, why: &str) -> String { From 75ced6bc7e946a8975c22abb43bca11190a0c05c Mon Sep 17 00:00:00 2001 From: Ben Kearns <35475+bkearns@users.noreply.github.com> Date: Sat, 25 Jul 2026 20:52:41 -0700 Subject: [PATCH 12/16] test(elle): unit-test the dead-session classification MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Local end-to-end validation of the reconnect fix was attempted and could NOT be completed — recorded here so the gap is not mistaken for coverage. The local 3-node compose cluster runs an 8-day-old nightly image that predates server-minted transaction ids, so every append is rejected instantly with "nested transactions are not supported" (15,997 of 16,000 failures). With no network round-trip, 24,000 ops complete in SEVEN SECONDS, so no mid-run node kill can land while the generator is alive. Validating the reconnect end-to-end needs an image built from current main. What the attempt DID verify: the worker-spreading fix works — the generator reports "pinning 6 workers across 3 node(s)" against the live cluster. So the classification that drives the reconnect is unit-tested instead, which needs no cluster: - the five failure texts that actually dominated the fault-injected run are classified dead (they were the 38,543 "pool is broken" BEGIN failures that previously never triggered a reconnect); - server-side rejections — insufficient replicas, invalid query, client timeout, internal error — are classified LIVE. Reconnecting on those would be actively harmful: rebuilding a session mid-run discards the transaction state the pinned-connection model depends on; - classification is case-insensitive, since driver error casing is not a stable contract. Verified the tests bite by inverting `is_session_dead` to always return false: 2 of 3 fail with "must replace the session for: BEGIN: No connections in the pool...". Restored. This tests the DECISION, not the reconnect wiring. The end-to-end path still needs a current-image run before the next certification is trusted. --- ferrosa-jepsen/examples/elle_list_append.rs | 46 +++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/ferrosa-jepsen/examples/elle_list_append.rs b/ferrosa-jepsen/examples/elle_list_append.rs index 7496c239..21b2944b 100644 --- a/ferrosa-jepsen/examples/elle_list_append.rs +++ b/ferrosa-jepsen/examples/elle_list_append.rs @@ -426,3 +426,49 @@ fn decode_int_list(col: Option<&Option>) -> Vec { _ => Vec::new(), } } + +#[cfg(test)] +mod tests { + use super::is_session_dead; + + /// The failure texts that actually dominated a fault-injected run. Each left + /// the session unusable, and each was previously NOT reconnected because the + /// reconnect was gated on a transaction id existing — which it never does + /// when BEGIN is the statement that failed. + #[test] + fn pool_and_connection_failures_mean_the_session_is_dead() { + for why in [ + "BEGIN: No connections in the pool: The pool is broken; Last connection failed with: Connection broken, reason: ...", + "BEGIN: No connections in the pool: The pool is broken; Last connection failed with: Connection refused (os error 61)", + "BEGIN: Connection broken, reason: Failed to deserialize frame: Failed to read the frame header: Connection reset by peer", + "UPDATE: broken pipe", + "READ: connection reset", + ] { + assert!(is_session_dead(why), "must replace the session for: {why}"); + } + } + + /// Server-side rejections leave the session perfectly usable. Reconnecting on + /// these would be actively harmful: rebuilding a session mid-run discards the + /// transaction state the pinned-connection model depends on, turning a + /// recoverable statement error into a lost transaction. + #[test] + fn server_side_rejections_do_not_kill_the_session() { + for why in [ + "UPDATE: Database returned an error: Not enough nodes responded to the write request in time to satisfy required consistency", + "BEGIN: Database returned an error: The query is syntactically correct but invalid, Error message: nested transactions are not supported", + "BEGIN: no txn id in result", + "COMMIT: Request execution exceeded a client timeout of 30000ms", + "COMMIT: Database returned an error: Internal server error", + ] { + assert!(!is_session_dead(why), "must NOT replace the session for: {why}"); + } + } + + /// Driver error casing is not a stable contract to depend on. + #[test] + fn classification_ignores_case() { + assert!(is_session_dead("BEGIN: THE POOL IS BROKEN")); + assert!(is_session_dead("begin: connection refused")); + } +} From 83d2d766a542b2fad39c51493b965136e36bd317 Mon Sep 17 00:00:00 2001 From: Ben Kearns <35475+bkearns@users.noreply.github.com> Date: Tue, 28 Jul 2026 08:47:13 -0700 Subject: [PATCH 13/16] test(elle): add local podman certification harness (cheap stand-in for the Fly rig) --- deploy/local-elle/.gitignore | 4 + deploy/local-elle/certify-local.sh | 138 +++++++++++++++++++++++++++++ 2 files changed, 142 insertions(+) create mode 100644 deploy/local-elle/.gitignore create mode 100755 deploy/local-elle/certify-local.sh diff --git a/deploy/local-elle/.gitignore b/deploy/local-elle/.gitignore new file mode 100644 index 00000000..99e560e8 --- /dev/null +++ b/deploy/local-elle/.gitignore @@ -0,0 +1,4 @@ +# Run artifacts — Elle histories are multi-MB per run and regenerated by +# certify-local.sh. Evidence worth keeping goes to the fly-accord-elle +# certification records, not here. +*.edn diff --git a/deploy/local-elle/certify-local.sh b/deploy/local-elle/certify-local.sh new file mode 100755 index 00000000..cd2fb09e --- /dev/null +++ b/deploy/local-elle/certify-local.sh @@ -0,0 +1,138 @@ +#!/usr/bin/env bash +# Local 3-node Elle strict-serializability run with fault injection. +# +# A cheap stand-in for deploy/fly-accord-elle/certify-nemesis.sh: same generator, +# same checker, same list-append workload — on podman instead of Fly. Use it to +# iterate on the harness and to reproduce faults without spending a Fly run. +# +# NOT a substitute for the Fly certification. One host, container networking, and +# 1 GiB per node; it cannot speak to real multi-host behaviour. It exists so that +# a broken harness is caught here rather than after a 26-minute cloud run. +# +# Usage: deploy/local-elle/certify-local.sh [ops_per_worker] [workers] +set -uo pipefail + +ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)" +COMPOSE="${ROOT_DIR}/ferrosa-jepsen/tests/docker/elle-cluster-rf3.yml" +IMAGE="${FERROSA_NIGHTLY_IMAGE:-localhost/ferrosa-elle-current:latest}" +OUT_EDN="${OUT_EDN:-${ROOT_DIR}/deploy/local-elle/local-history.edn}" +OPS="${1:-3000}" +WORKERS="${2:-6}" +KEYS="${KEYS:-8}" +RF="${RF:-3}" + +log() { printf '\n[local-cert] %s\n' "$*" >&2; } +die() { printf '\n[local-cert][FATAL] %s\n' "$*" >&2; exit 1; } + +command -v podman >/dev/null || die "podman not on PATH" +command -v lein >/dev/null || die "lein not on PATH (needed for the checker)" + +# --- Node helpers ----------------------------------------------------------- +# Every check inspects LIVE state. An earlier version of this harness trusted +# `podman ps` output captured before a fault and concluded a dead node was +# healthy, which turned every subsequent run into a silent 2-of-3 cluster whose +# SERIAL-read failures looked like a product bug. Never infer liveness. +running() { [ "$(podman inspect "$1" --format '{{.State.Running}}' 2>/dev/null)" = "true" ]; } +ready() { curl -sf --max-time 3 "http://localhost:$1/readyz" >/dev/null 2>&1; } +port_for() { case "$1" in 1) echo 9090;; 2) echo 9091;; 3) echo 9092;; esac; } + +wait_all_ready() { + local i n up rdy + for i in $(seq 1 60); do + up=0; rdy=0 + for n in 1 2 3; do + running "ferrosa-elle-node${n}" && up=$((up + 1)) + ready "$(port_for "$n")" && rdy=$((rdy + 1)) + done + [ "$up" = 3 ] && [ "$rdy" = 3 ] && { log "3/3 running and ready (${i}x2s)"; return 0; } + sleep 2 + done + die "cluster did not reach 3 running + 3 ready" +} + +# Kill a node, verify it actually died, restart it, verify it actually returned. +# +# The restart is NOT deferred behind a sleep in a background subshell. A previous +# version did that, and when the parent timed out the subshell was killed before +# the restart ran — leaving the node dead for every later run. +restart_node() { + # NOTE: split deliberately. `local n="$1" c="...${n}"` does NOT work — bash + # expands every word of the `local` builtin BEFORE performing any assignment, + # so ${n} resolves against the OUTER scope (unset) and `set -u` aborts. + local n="$1" + local c="ferrosa-elle-node${n}" + local t0 t1 i + log "FAULT: SIGKILL node${n}" + podman kill --signal SIGKILL "$c" >/dev/null 2>&1 || log "WARN: kill node${n} returned non-zero" + + running "$c" && die "node${n} still running after SIGKILL — the fault did not bite, so any verdict would be meaningless" + log "node${n} confirmed down (exit=$(podman inspect "$c" --format '{{.State.ExitCode}}' 2>/dev/null))" + + sleep "${DOWN_SECS:-20}" + + t0=$(date +%s) + podman start "$c" >/dev/null 2>&1 || die "could not restart node${n}" + for i in $(seq 1 60); do + if running "$c" && ready "$(port_for "$n")"; then + t1=$(date +%s) + log "node${n} REJOIN_SECONDS=$((t1 - t0))" + return 0 + fi + sleep 2 + done + die "node${n} did not return within 120s — refusing to continue with a degraded cluster" +} + +# --- Bring up --------------------------------------------------------------- +log "cluster up (image=$IMAGE)" +FERROSA_NIGHTLY_IMAGE="$IMAGE" podman compose -f "$COMPOSE" down >/dev/null 2>&1 +FERROSA_NIGHTLY_IMAGE="$IMAGE" podman compose -f "$COMPOSE" up -d >/dev/null 2>&1 \ + || die "compose up failed" +wait_all_ready + +# --- Run generator + faults ------------------------------------------------- +# Generator in the BACKGROUND, faults in the FOREGROUND: the fault schedule then +# controls timing and cannot be orphaned, and we can tell whether the generator +# was still alive when each fault fired. +log "generator: $KEYS keys, $OPS ops/worker, $WORKERS workers, rf=$RF" +GEN_LOG="$(mktemp)" +( cd "$ROOT_DIR" && cargo run -q -p ferrosa-jepsen --example elle_list_append -- \ + 127.0.0.1:9042 "$OUT_EDN" "$KEYS" "$OPS" "$WORKERS" "$RF" ) >"$GEN_LOG" 2>&1 & +GEN_PID=$! + +sleep "${WARMUP_SECS:-15}" +kill -0 "$GEN_PID" 2>/dev/null || die "generator exited during warmup — see $GEN_LOG" + +restart_node 3 # replica +kill -0 "$GEN_PID" 2>/dev/null \ + && log "generator still running after the replica restart" \ + || log "WARN: generator finished before the replica restart — that fault hit an idle cluster" + +restart_node 1 # the node the generator's first worker is pinned to +if kill -0 "$GEN_PID" 2>/dev/null; then + log "generator still running after the coordinator restart — faults fired against live traffic" +else + log "WARN: generator finished before the coordinator restart — raise ops before trusting a green verdict" +fi + +log "waiting for generator to finish" +wait "$GEN_PID" +GEN_RC=$? +grep -E "pinning|=== failure|^ +[0-9]+ +:|wrote" "$GEN_LOG" | head -20 >&2 +[ "$GEN_RC" = 0 ] || log "WARN: generator exited $GEN_RC" + +wait_all_ready # the cluster must be whole again before the verdict means anything + +# --- Verdict ---------------------------------------------------------------- +[ -s "$OUT_EDN" ] || die "history is empty" +log "outcome breakdown" +for t in ok info fail; do + printf ' :%-5s %s\n' "$t" "$(grep -c ":type :$t" "$OUT_EDN")" >&2 +done + +log "Elle check" +( cd "${ROOT_DIR}/ferrosa-jepsen/elle-checker" && lein run "$OUT_EDN" ) +RC=$? +log "checker exit=$RC (0 only on a definitive valid? true)" +log "REMINDER: a green verdict over a mostly-:fail history is VACUOUS — read the breakdown above before citing it." +exit "$RC" From 79b6c8d8868a65e9aac476b9a21232afe7d328cd Mon Sep 17 00:00:00 2001 From: Ben Kearns <35475+bkearns@users.noreply.github.com> Date: Tue, 28 Jul 2026 08:47:13 -0700 Subject: [PATCH 14/16] =?UTF-8?q?test(cluster):=20make=20formation=20failu?= =?UTF-8?q?res=20diagnosable=20=E2=80=94=20tracing=20init=20+=20raft=20sta?= =?UTF-8?q?te=20timeline?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The formation test installed no tracing subscriber, so a CI failure printed only the final metrics line. Worse, RUST_LOG=openraft=debug HIDES the formation race (20/20 pass with it, ~3% failures without): synchronous formatted writes on the raft path shift the timing window. So the durable diagnostic is a metrics-watch timeline (25ms sampling, transitions only, one shared epoch across nodes), dumped on failure alongside voters/learners membership — the fields that separate 'votes rejected' from 'elections stopped' (t_b0aac0d3). --- ferrosa-cluster/Cargo.toml | 1 + ferrosa-cluster/tests/cluster_formation.rs | 123 ++++++++++++++++++++- 2 files changed, 122 insertions(+), 2 deletions(-) diff --git a/ferrosa-cluster/Cargo.toml b/ferrosa-cluster/Cargo.toml index d025bfa5..37392848 100644 --- a/ferrosa-cluster/Cargo.toml +++ b/ferrosa-cluster/Cargo.toml @@ -37,6 +37,7 @@ proptest = "1" rand = "0.10" serial_test = "3" tempfile = "3" +tracing-subscriber = { version = "0.3", features = ["env-filter"] } tokio = { version = "1", features = ["full", "test-util"] } [features] diff --git a/ferrosa-cluster/tests/cluster_formation.rs b/ferrosa-cluster/tests/cluster_formation.rs index 3cb4bc34..e59e3ace 100644 --- a/ferrosa-cluster/tests/cluster_formation.rs +++ b/ferrosa-cluster/tests/cluster_formation.rs @@ -39,6 +39,75 @@ use ferrosa_storage::{CommitLogConfig, CompactionConfig}; // Test helpers // --------------------------------------------------------------------------- +/// Install a tracing subscriber so `RUST_LOG` reaches raft/cluster spans. +/// +/// Without this the whole crate's `tracing::` output is discarded, which is +/// why a formation failure in CI prints only the final metrics line and +/// nothing about the vote round that produced it. +fn init_test_tracing() { + static ONCE: std::sync::Once = std::sync::Once::new(); + ONCE.call_once(|| { + use tracing_subscriber::EnvFilter; + let _ = tracing_subscriber::fmt() + .with_env_filter(EnvFilter::from_default_env()) + .with_test_writer() + .try_init(); + }); +} + +/// A recorded Raft state transition, used to reconstruct what an election +/// actually did on failure. +type Timeline = Arc>>; + +/// Watch a node's Raft metrics and record every distinct state transition. +/// +/// This exists instead of `RUST_LOG=openraft=debug` on purpose: verbose +/// logging does synchronous formatted writes on the Raft path, which shifts +/// the timing enough to hide the formation race entirely (20/20 passes with +/// debug logging vs ~17% failures without). Sampling the metrics watch channel +/// records the same election story without perturbing it. +fn spawn_timeline_recorder(controller: Arc, host_id: Uuid, timeline: Timeline) { + tokio::spawn(async move { + // ONE epoch shared by all nodes. Per-node epochs are useless here: + // the nodes are started sequentially, so per-node-relative stamps + // cannot be interleaved into a single causal story (an earlier + // version of this recorder did exactly that and produced an + // apparent impossibility — peers voting for a node before it + // existed — that was purely an artifact of mismatched origins). + static EPOCH: std::sync::OnceLock = std::sync::OnceLock::new(); + let start = *EPOCH.get_or_init(tokio::time::Instant::now); + let mut last = String::new(); + loop { + if let Some(raft) = controller.raft() { + let m = raft.metrics().borrow().clone(); + // `inst` is the Arc identity of the Raft instance. If this + // changes, the node REBUILT its raft (e.g. across a mode + // transition) — a second instance replaying a term the peers + // have already voted in cannot win, because openraft grants + // only on a strictly greater vote. + let cur = format!( + "inst={:p} term={:?} state={:?} leader={:?} vote={:?} last_log={:?}", + Arc::as_ptr(&raft), + m.current_term, + m.state, + m.current_leader, + m.vote, + m.last_log_index, + ); + if cur != last { + let ms = start.elapsed().as_millis(); + timeline + .lock() + .unwrap_or_else(|e| e.into_inner()) + .push(format!(" +{ms:>6}ms [{host_id}] {cur}")); + last = cur; + } + } + tokio::time::sleep(Duration::from_millis(25)).await; + } + }); +} + /// Create a StorageEngine with a temp directory. fn test_storage(dir: &std::path::Path) -> Arc { let config = StorageEngineConfig { @@ -106,6 +175,7 @@ struct TestClusterNode { peer_manager: Arc, host_id: Uuid, bound_addr: SocketAddr, + timeline: Timeline, _dir: tempfile::TempDir, } @@ -154,6 +224,9 @@ impl TestClusterNode { let server = Arc::new(RpcServer::new((*net_config).clone(), host_id, registry)); let addr = server.start_and_get_addr().await.unwrap(); + let timeline: Timeline = Arc::new(std::sync::Mutex::new(Vec::new())); + spawn_timeline_recorder(controller.clone(), host_id, timeline.clone()); + Self { controller, _handles: handles, @@ -161,6 +234,7 @@ impl TestClusterNode { peer_manager: pm, host_id, bound_addr: addr, + timeline, _dir: dir, } } @@ -201,9 +275,28 @@ impl TestClusterNode { // Diagnostic on timeout: print Raft state for each node. if let Some(raft) = self.controller.raft() { let m = raft.metrics().borrow().clone(); + // Membership + vote are what separate the failure modes: + // a stuck candidate at a FROZEN term means elections + // stopped, whereas a climbing term means votes are being + // rejected. `voter_ids` shows whether the peers were ever + // promoted out of Learner. eprintln!( - "[{}] election timeout: term={:?} state={:?} leader={:?}", - self.host_id, m.current_term, m.state, m.current_leader, + "[{}] election timeout: term={:?} state={:?} leader={:?} \ + vote={:?} last_log={:?} voters={:?} learners={:?}", + self.host_id, + m.current_term, + m.state, + m.current_leader, + m.vote, + m.last_log_index, + m.membership_config + .membership() + .voter_ids() + .collect::>(), + m.membership_config + .membership() + .learner_ids() + .collect::>(), ); } else { eprintln!("[{}] election timeout: Raft instance is NONE", self.host_id); @@ -281,6 +374,7 @@ mod harness_slot; #[tokio::test(flavor = "multi_thread", worker_threads = 4)] async fn three_node_cluster_elects_raft_leader() { + init_test_tracing(); let _slot = harness_slot::acquire_harness_slot().await; // Use deterministic UUIDs so the test is reproducible. // Node1 has the highest UUID so it becomes Primary in pair mode, @@ -397,6 +491,31 @@ async fn three_node_cluster_elects_raft_leader() { leader_on_node1, leader_on_node2, leader_on_node3 ); + if leader_on_node1.is_none() { + eprintln!("=== Raft state timeline (all nodes, transitions only) ==="); + let mut all: Vec = Vec::new(); + for n in [&node1, &node2, &node3] { + all.extend( + n.timeline + .lock() + .unwrap_or_else(|e| e.into_inner()) + .iter() + .cloned(), + ); + } + // Interleave by the +NNNNms prefix so the three nodes read as one story. + all.sort_by_key(|l| { + l.split_once('+') + .and_then(|(_, r)| r.split_once("ms")) + .and_then(|(ms, _)| ms.trim().parse::().ok()) + .unwrap_or(0) + }); + for line in all { + eprintln!("{line}"); + } + eprintln!("=== end timeline ==="); + } + // Assert a leader was elected on at least one node assert!( leader_on_node1.is_some(), From 2a602edea2a9515915f2dc508356677cd1b4392d Mon Sep 17 00:00:00 2001 From: Ben Kearns <35475+bkearns@users.noreply.github.com> Date: Tue, 28 Jul 2026 10:25:26 -0700 Subject: [PATCH 15/16] test(cluster): a candidate whose vote round fails must re-campaign (red for the pre-vote stall) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit candidate_re_campaigns_while_peers_are_down: the seed initializes a 3-voter membership with both peers down and must keep firing elections — current_term advancing past 1 is the oracle (election-timer liveness, not leadership; a lone seed can never lead a 3-voter cluster). Fails on the unfixed tree with term frozen at exactly 1: the fork's tick election path gates elect() behind a pre-vote round that FerrosRaftNetwork provides no transport for, so every probe is an automatic NO and no election after initialize()'s can ever fire (t_b0aac0d3). --- ferrosa-cluster/tests/cluster_formation.rs | 146 ++++++++++++++++++--- 1 file changed, 129 insertions(+), 17 deletions(-) diff --git a/ferrosa-cluster/tests/cluster_formation.rs b/ferrosa-cluster/tests/cluster_formation.rs index e59e3ace..a3e16fd9 100644 --- a/ferrosa-cluster/tests/cluster_formation.rs +++ b/ferrosa-cluster/tests/cluster_formation.rs @@ -1,22 +1,33 @@ -//! Integration test for 3-node cluster formation via progressive join. -//! -//! This test exposes a bug where a fresh 3-node Raft cluster cannot elect a -//! leader. See specs/bug-cluster-formation-raft-election-failure.md for the -//! full bug report. +//! Integration tests for 3-node cluster formation via progressive join. //! //! Expected behavior: //! - Node1 starts standalone, transitions to pair when node2 connects, //! then to cluster when node3 connects. -//! - A Raft leader is elected within a reasonable time (~10s). -//! - All 3 nodes agree on the leader. +//! - The seed (highest UUID) calls `raft.initialize()`; a Raft leader is +//! elected within a reasonable time and all 3 nodes agree on it. //! - DDL operations (e.g., CREATE KEYSPACE) succeed through Raft. //! -//! Actual behavior (the bug): -//! - All 3 nodes start elections simultaneously. -//! - Candidates each get their own vote but never win quorum (need 2 of 3). -//! - Terms increment slowly (T1 -> T19 in ~90s) but no leader is elected. -//! - Vote RPCs timeout at 3s despite TCP connectivity being fine. -//! - Node3 may be rejected with "peer not approved to join cluster". +//! Formation-stall bug these tests now guard against (fixed): +//! `specs/implemented/bug-cluster-formation-pre-vote-election-stall.md`. +//! +//! - `raft_enable_pre_vote` defaulted to `true`, but `FerrosRaftNetwork` +//! never implemented the `pre_vote` RPC. The pinned openraft fork +//! hard-gates the tick election path behind a pre-vote round, so every +//! `pre_vote()` returned an "unimplemented" NetworkError counted as a NO +//! vote — a pre-vote quorum was structurally impossible. +//! - Consequence: after the seed's single `initialize()`-driven election at +//! term 1, NO further election could ever fire. A transient first-round +//! vote loss (e.g. a peer whose raft was not yet built) froze the +//! candidate at term=1 for the whole formation window instead of +//! self-healing on the next election timeout. +//! - It hid under debug logging: verbose synchronous log writes on the raft +//! path shift the timing enough to paper over the initial vote loss, so +//! the stall only reproduced in quiet, CPU-starved runs (~3% on a shared +//! vCPU). The metrics-watch timeline recorder below exists precisely to +//! capture the election story WITHOUT that perturbation. +//! - Fix: default `raft_enable_pre_vote` to `false` until the transport is +//! implemented (tracked separately). `candidate_re_campaigns_while_peers_are_down` +//! is the regression guard on election-timer liveness. use std::net::SocketAddr; use std::sync::Arc; @@ -519,10 +530,11 @@ async fn three_node_cluster_elects_raft_leader() { // Assert a leader was elected on at least one node assert!( leader_on_node1.is_some(), - "BUG: No Raft leader elected on node1 within {election_timeout:?}. \ - This indicates the cluster formation race condition where all nodes \ - start elections simultaneously and split votes indefinitely. \ - See specs/bug-cluster-formation-raft-election-failure.md" + "No Raft leader elected on node1 within {election_timeout:?}. If the \ + seed froze at term=1 while its peers were reachable, suspect a \ + regression of the pre-vote election-stall (an election gate with no \ + network transport). See \ + specs/implemented/bug-cluster-formation-pre-vote-election-stall.md" ); let leader = leader_on_node1.unwrap(); @@ -583,6 +595,106 @@ async fn three_node_cluster_elects_raft_leader() { node3.shutdown().await; } +/// A seed whose two peers never come up must keep re-campaigning. +/// +/// This is the election-timer liveness guard for the pre-vote formation stall +/// (forge t_b0aac0d3). The seed (highest UUID) transitions standalone → pair → +/// cluster off two `on_peer_connected` notifications for peers that were never +/// started (no RPC server, no pool), then calls `raft.initialize()` with a +/// 3-voter membership. It cannot win — quorum is 2 and the peers are down — so +/// the ONLY correct behavior is to keep firing elections, bumping `current_term` +/// past 1 on every election-timeout tick. That is what lets a transient vote +/// loss self-heal once a peer's raft finally exists. +/// +/// The oracle asserts election-timer liveness (`current_term > 1`), NOT +/// leadership — a lone seed can never lead a 3-voter cluster. +/// +/// FAILS on `raft_enable_pre_vote == true`: the fork's tick election path +/// hard-gates `engine.elect()` behind `run_pre_vote_round()`, which calls +/// `FerrosRaftNetwork::pre_vote()`. That method is not overridden, so the +/// default trait impl returns an "unimplemented" NetworkError counted as a NO +/// vote. A pre-vote quorum is then structurally impossible, every tick election +/// is suppressed, and the seed freezes at `term == 1` for the whole window. +#[tokio::test(flavor = "multi_thread", worker_threads = 4)] +async fn candidate_re_campaigns_while_peers_are_down() { + init_test_tracing(); + let _slot = harness_slot::acquire_harness_slot().await; + + // The single live node has the HIGHEST UUID, so it is the Raft seed and is + // the node that calls raft.initialize() with the full 3-voter membership. + let seed_id = Uuid::from_bytes([0xFF, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]); + let down_peer_a = Uuid::from_bytes([0x00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]); + let down_peer_b = Uuid::from_bytes([0x00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3]); + + let seed = TestClusterNode::start(seed_id).await; + + // Two peers that were never started: valid, unreachable localhost addrs with + // no RPC server behind them and no pool registered in the PeerManager. Vote + // RPCs to them fail fast, exactly like peers whose raft is not yet built. + let down_addr_a: SocketAddr = "127.0.0.1:59102".parse().unwrap(); + let down_addr_b: SocketAddr = "127.0.0.1:59103".parse().unwrap(); + + // Drive the seed's state machine directly: standalone → pair (peer A) → + // forming → cluster (peer B). At the cluster transition the seed sees a + // 3-member set {seed, A, B}, wins the highest-UUID seed election, and calls + // raft.initialize(). + seed.controller + .on_peer_connected((down_peer_a, down_addr_a)); + tokio::time::sleep(Duration::from_millis(300)).await; + seed.controller + .on_peer_connected((down_peer_b, down_addr_b)); + + // Poll the seed's raft metrics until its term advances past 1 (the healthy + // outcome: elections keep firing) or the deadline elapses (the stall: term + // frozen at 1). The seed retries ClusterInvite delivery + pool + // establishment to the two down peers BEFORE building the raft and calling + // initialize(), so the raft is not even constructed for ~20s (observed). + // The deadline is set well past that build window plus several 500-1000ms + // election cycles so machine-load variance in the pre-init phase can't + // masquerade as a dead election timer. The healthy path breaks out the + // instant term crosses 1, so this generous bound only costs wall time on a + // genuine (failing) stall. + let deadline = tokio::time::Instant::now() + Duration::from_secs(60); + let mut last_term: u64 = 0; + let advanced = loop { + if let Some(raft) = seed.controller.raft() { + last_term = raft.metrics().borrow().current_term; + if last_term > 1 { + break true; + } + } + if tokio::time::Instant::now() > deadline { + break false; + } + tokio::time::sleep(Duration::from_millis(100)).await; + }; + + if !advanced { + eprintln!("=== seed raft timeline (transitions only) ==="); + for line in seed + .timeline + .lock() + .unwrap_or_else(|e| e.into_inner()) + .iter() + { + eprintln!("{line}"); + } + eprintln!("=== end timeline ==="); + } + + assert!( + advanced, + "seed's raft term never advanced past 1 (last observed term={last_term}): \ + the election timer is dead. With pre-vote enabled but no pre_vote network \ + transport, the fork's tick election path gates elect() behind a pre-vote \ + round that can never reach quorum, so a transient vote loss becomes a \ + permanent formation stall. See forge t_b0aac0d3 / \ + specs/implemented/bug-cluster-formation-pre-vote-election-stall.md" + ); + + seed.shutdown().await; +} + /// Minimal test: verify that ModeController transitions through /// standalone -> pair -> cluster when peers connect progressively. /// From c13fbcf6530fc809109b3853739d42d427e062f0 Mon Sep 17 00:00:00 2001 From: Ben Kearns <35475+bkearns@users.noreply.github.com> Date: Tue, 28 Jul 2026 10:25:26 -0700 Subject: [PATCH 16/16] fix(cluster): disable the pre-vote election gate until its transport exists MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit raft_enable_pre_vote defaulted true per ADR-012, but the pinned openraft fork's tick election path hard-gates elect() behind run_pre_vote_round() while FerrosRaftNetwork never overrides pre_vote — the default trait impl returns an unimplemented NetworkError counted as a NO vote. A pre-vote quorum was structurally impossible, so after the seed's single initialize()-driven election at term 1, no election could ever fire again: a transient first-round vote loss became a permanent formation stall (~3% under CPU starvation, CI job 89743146291). Default the gate OFF so the tick path elects directly and a lost round self-heals on the next timeout, exactly like upstream. The FERROSA_RAFT_ENABLE_PRE_VOTE override remains for when the transport lands (t_32cb5ad3). ADR-012 assert inverted with rationale; election-storm mitigation remains the election_guard watchdog, now documented as load-bearing (CL-2/CL-15). Spec: specs/implemented/bug-cluster-formation-pre-vote-election-stall.md (t_b0aac0d3). --- ferrosa-cluster/README.md | 17 +++- ferrosa-cluster/specs/fmea.md | 10 +- ferrosa-cluster/specs/overview.md | 3 +- ferrosa-cluster/specs/roadmap.md | 11 ++- ferrosa-cluster/src/config.rs | 33 +++++-- ...uster-formation-pre-vote-election-stall.md | 96 +++++++++++++++++++ 6 files changed, 153 insertions(+), 17 deletions(-) create mode 100644 specs/implemented/bug-cluster-formation-pre-vote-election-stall.md diff --git a/ferrosa-cluster/README.md b/ferrosa-cluster/README.md index 840191be..6ab4bb26 100644 --- a/ferrosa-cluster/README.md +++ b/ferrosa-cluster/README.md @@ -12,8 +12,9 @@ token ring and a Raft-replicated metadata state machine: 1. **Raft metadata consensus** (`raft/`) — schema/DDL, membership, token assignments, and cluster config are replicated through openraft 0.9 (a pinned - ferrosa fork with PreVote + CheckQuorum). The state machine is in-memory - `RaftState`; the log is sled-backed. + ferrosa fork with a CheckQuorum extension; a PreVote gate also exists in the + fork but is **disabled by default** — its network transport is unimplemented, + see below). The state machine is in-memory `RaftState`; the log is sled-backed. 2. **Read/write coordination** (`coordinator/`) — fans writes and reads out to replicas with tunable CQL consistency-level (CL) enforcement, write backpressure, read repair, batchlog, and range/streaming reads. @@ -40,8 +41,18 @@ strict-serializable multi-key / cross-shard transactions and LWT. ### Raft metadata consensus (`raft/`) - openraft 0.9 with features `serde`, `storage-v2`, `loosen-follower-log-revert`, - plus a pinned fork adding **PreVote** (`raft_enable_pre_vote`, default on) and + plus a pinned fork adding **PreVote** (`raft_enable_pre_vote`) and **CheckQuorum** (`raft_check_quorum_ratio`, default 0.75) per ADR-012. + - **PreVote defaults OFF** (`raft_enable_pre_vote = false`). ADR-012 intended + it on, but the fork's tick election path hard-gates `elect()` behind a + pre-vote round while `FerrosRaftNetwork` (`raft/network.rs`) never overrides + `pre_vote` — the default trait impl returns an "unimplemented" error counted + as a NO vote, making a pre-vote quorum structurally impossible and freezing + any multi-voter formation at term 1. Leaving it on only subtracts liveness. + Re-enable only after the pre-vote transport lands (forge t_b0aac0d3 / + t_32cb5ad3). Regression guard: `candidate_re_campaigns_while_peers_are_down` + in `tests/cluster_formation.rs`. Spec: + [`specs/implemented/bug-cluster-formation-pre-vote-election-stall.md`](../specs/implemented/bug-cluster-formation-pre-vote-election-stall.md). - `FerrosStateMachine` / `RaftState` — keyspaces, tables, roles/grants, indexes, types, UDFs/UDAs, members, token map, per-node index status, cluster config. `DropTable` apply removes the table's index entries from `RaftState` and, via diff --git a/ferrosa-cluster/specs/fmea.md b/ferrosa-cluster/specs/fmea.md index 5d4bbd5d..9670c79d 100644 --- a/ferrosa-cluster/specs/fmea.md +++ b/ferrosa-cluster/specs/fmea.md @@ -14,7 +14,7 @@ cluster-wide and severities run high. Several entries are *evidence* gaps | ID | Failure mode | Effect | S | O | D | RPN | Mitigation / status | |----|--------------|--------|---|---|---|-----|---------------------| | CL-1 | **No external/public Jepsen validation of Accord + Raft.** All consensus/transaction tests are in-crate, deterministic harnesses (`TestCluster`, simulated nemesis). Real partitions, clock skew, fsync faults, and Byzantine timing are not exercised end-to-end. | A linearizability/strict-serializability violation that only manifests under real-world faults would ship undetected | 10 | 4 | 8 | 320 | **Open evidence gap.** `ferrosa-jepsen` harness designed + approved (`specs/todo/jepsen-e2e-test-plan.md`) but **not built**. Strong in-crate property/recovery tests reduce occurrence but cannot close detection. Treat correctness as *tested, not proven*. | -| CL-2 | **Raft election storm on log divergence.** A follower whose log falls behind bumps its term unboundedly (no pre-vote in upstream openraft 0.9), burning CPU and inflating terms while the cluster is stable (observed T18,348 vs leader T8). | Hot node, term inflation, replication backoff; can block snapshot delivery | 8 | 5 | 4 | 160 | **Mitigated.** Pinned openraft fork adds PreVote + CheckQuorum (ADR-012, default on). Belt-and-suspenders `election_guard` watchdog (P0-17/P0-19) suppresses storms (`elect(false)` 60 s) and exposes `ELECTION_STORM_TERM_JUMPS_TOTAL`; `snapshot_pusher` (P0-20) pushes snapshots to lagging followers. Guard/pusher slated for removal (W4.11/W4.12) only after a clean Jepsen window — which depends on CL-1. | +| CL-2 | **Raft election storm on log divergence.** A follower whose log falls behind bumps its term unboundedly (no pre-vote in upstream openraft 0.9), burning CPU and inflating terms while the cluster is stable (observed T18,348 vs leader T8). | Hot node, term inflation, replication backoff; can block snapshot delivery | 8 | 5 | 4 | 160 | **Mitigated.** Pinned openraft fork adds CheckQuorum (ADR-012, default 0.75). Its PreVote gate — the intended primary defense against this storm — is **disabled by default** because its network transport is unimplemented (see CL-15), so the actual mitigation today is the `election_guard` watchdog (P0-17/P0-19) suppresses storms (`elect(false)` 60 s) and exposes `ELECTION_STORM_TERM_JUMPS_TOTAL`; `snapshot_pusher` (P0-20) pushes snapshots to lagging followers. Guard/pusher slated for removal (W4.11/W4.12) only after a clean Jepsen window — which depends on CL-1. | | CL-3 | **Write backpressure exhaustion starves the data path.** `WRITE_CONCURRENCY_LIMIT = 128` semaphore protects Raft from bulk-insert runtime saturation, but a saturated cluster returns `Unavailable` once all 128 permits are held. | Bulk writers see `Unavailable`/`WriteTimeout` under load; client must retry/throttle | 6 | 5 | 3 | 90 | **By design, fail-loud.** Limit prevents the worse failure (Raft heartbeat starvation → election storms). Constant is fixed, not tunable; batch path has a separate `DEFAULT_BATCH_CONCURRENCY = 32`. Tuning guidance + per-tenant limits are roadmap items. | | CL-4 | **Accord coordinator-failure recovery edge cases.** Recovery must re-propose by highest `accepted_ballot` (not `max_ballot_seen`); supersession ordering and cross-DC recovery are exercised only on the deterministic harness. | Wrong recovery decision → committed value lost or duplicated → serializability violation | 10 | 2 | 7 | 140 | Recovery rule + ballot invariant covered by `recovery_scenarios.rs` (13) and `proptests.rs`. Cross-DC adapter is thin glue with **no in-crate cross-DC failure test**. Depends on CL-1 for real validation. | | CL-5 | **Accord storage-apply seam untested under crashes.** Apply path dep-waits then writes via `StorageApplier`; in-crate tests use `NoopStorageApplier`, so real durability-under-crash on the engine-backed applier is unproven here. | A transaction reported applied may not be durable after a crash at the wrong moment | 9 | 2 | 7 | 126 | Dep-wait + idempotent re-apply implemented; production wires the engine applier. Crash-durability of the seam is a CL-1-adjacent evidence gap. | @@ -27,6 +27,7 @@ cluster-wide and severities run high. Several entries are *evidence* gaps | CL-12 | **Bincode Raft-log wire fragility.** `RaftOp` variant reordering silently corrupts the persisted log. | A careless enum edit bricks log replay across a rolling upgrade | 9 | 1 | 5 | 45 | `raft_op_variant_tag_stability` test pins discriminants; recovery tooling `ferrosa-ctl raft log-inspect`/`log-truncate`; legacy format auto-migrated on load. | | CL-13 | **Degraded pair read rejection (fixed).** `transition_to_degraded()` previously replaced `WritePath` with `Unavailable`, blocking both writes AND reads. The `WritePath` is also the read path. `is_cql_ready()` returned `true` for `DegradedPair` (intending stale reads), but the read methods on `Unavailable` returned errors. | After primary failure, follower could not serve reads of replicated data until operator promotion — violating the pair-mode design rule that reads work without promotion. | 8 | 4 | 5 | 160 | **Fixed:** `DegradedPair(Arc)` variant preserves `local_storage()` for reads while rejecting writes. Regression test `degraded_pair_serves_stale_reads` verifies the `WritePath` variant after peer loss. | | CL-14 | **Paged multi-replica stream lifecycle (fixed, live validation pending).** Abandoning a page's merged stream (every paged read, every page but the last) left (a) the remote producers streaming the whole remaining table onto `Lane::Bulk` for nobody (`RangeReadStreamCancel` was never SENT and had no registered receiver MsgType), (b) the N-way merge parked forever on a stalled source before observing consumer abandonment, and (c) in-order straggler chunks whose route-error handling CLEARED live seq-state so the next straggler fabricated fresh `expected=0` state → phantom `expected_seq=0 observed_seq=5` gap-close per page (426–1065 closes per viz run on fmem-dev). | Paged scans stall (heartbeat-defunct connections), retry storms duplicate results, replica OOM under `pages × replicas` uncancelled full-table producers; phantom closes mask real chunk loss in logs. | 8 | 8 | 3 | 192 | **Fixed (t_dc729b1d/t_3fc6be3c/t_577dd385):** seq-state creation gated on route liveness (no-state+no-route = terminal straggler → silent drop; ids monotonic, route registered before fire); genuine gaps on LIVE routes still close loudly exactly once (`StreamFrameRouter::route_closures()` — alert if non-zero steady-state); forwarder task fires `RangeReadStreamCancel` on any non-`Completed` outcome (info-logged so a live deploy can verify cancels flow — the reverted Drop-guard sent zero); Cancel MsgType registered to the request handler; `run_fragment_merge_nway` races the merge core against `out_tx.closed()` so a dropped consumer aborts even while parked on a stalled source. Counter-asserted 3-node loopback harness `tests/range_scan_multi_replica_paging.rs`; deterministic parked-merge pin: `range_read_stream::tests::nway_merge_consumer_drop_aborts_when_parked_on_stalled_source`. **Residual:** the reverted predecessor passed in-process tests and failed live (t_3fc6be3c) — must be re-validated on a live RF=3 cluster (viz WS run + `SELECT id` 15k-row 3-page scan) before the claim closes. | +| CL-15 | **Pre-vote election stall (fixed).** With `raft_enable_pre_vote = true` the fork's tick election path hard-gates `elect()` behind a pre-vote round, but `FerrosRaftNetwork` (`raft/network.rs`) never overrides `pre_vote` — the default trait impl returns "unimplemented", counted as a NO vote. A pre-vote quorum is then structurally impossible: after the seed's single `initialize()`-driven election at term 1 no further election ever fires, so a transient first-round vote loss freezes formation at term=1 permanently (reproduced ~3% under CPU starvation; CI 89743146291). Debug logging hides it by shifting timing. | Multi-voter cluster never elects a leader; `/cluster/topology` shows `committed_cluster_size:0`; looks like a hang, not a storm (term does NOT climb) | 9 | 3 | 6 | 162 | **Fixed (t_b0aac0d3):** `raft_enable_pre_vote` now defaults **false** (`config.rs`); the tick path calls `elect()` directly so a lost round self-heals on the next timeout. `FERROSA_RAFT_ENABLE_PRE_VOTE` override intact. Regression guard `candidate_re_campaigns_while_peers_are_down` (`tests/cluster_formation.rs`) asserts the seed's term advances past 1. **Residual:** pre-vote stays off until `FerrosRaftNetwork::pre_vote` is implemented (t_32cb5ad3); spec `specs/implemented/bug-cluster-formation-pre-vote-election-stall.md`. | ## Top risks to act on @@ -35,9 +36,10 @@ cluster-wide and severities run high. Several entries are *evidence* gaps serializability holds" claim rests on deterministic in-crate tests. Build the harness; it also gates removal of the CL-2 election-guard/snapshot-pusher safety nets. -2. **CL-2 (RPN 160)** — election storms are well-mitigated (PreVote + CheckQuorum + - guard + pusher), but the mitigations are *layered band-aids* awaiting Jepsen - confirmation before the band-aids come off. Keep the guard until CL-1 closes. +2. **CL-2 (RPN 160)** — election storms are mitigated by the `election_guard` + watchdog + `snapshot_pusher` + CheckQuorum. PreVote (the intended primary + defense) is OFF until its transport lands (CL-15), so the guard is currently + load-bearing, not a band-aid — keep it until both CL-15 and CL-1 close. 3. **CL-4 / CL-5 (RPN 140 / 126)** — Accord recovery and the storage-apply seam are the correctness-critical paths least covered by real-fault testing; prioritise them in the Jepsen workload set and add cross-DC failure cases. diff --git a/ferrosa-cluster/specs/overview.md b/ferrosa-cluster/specs/overview.md index 03774956..6cddb15b 100644 --- a/ferrosa-cluster/specs/overview.md +++ b/ferrosa-cluster/specs/overview.md @@ -4,7 +4,8 @@ status: implemented last_updated: 2026-07-03 executive_summary: > The distribution layer that turns single-node ferrosa-storage engines into a - cluster: Raft metadata consensus (openraft 0.9 fork with PreVote + CheckQuorum), + cluster: Raft metadata consensus (openraft 0.9 fork with CheckQuorum; a PreVote + gate exists in the fork but defaults OFF until its network transport is built), tunable-CL read/write coordination with write backpressure and read repair, the Standalone→Pair→Forming→Cluster formation state machine, Merkle anti-entropy repair + hinted handoff, and Accord strict-serializable transactions. Consensus diff --git a/ferrosa-cluster/specs/roadmap.md b/ferrosa-cluster/specs/roadmap.md index 0604f1c2..b8c92d77 100644 --- a/ferrosa-cluster/specs/roadmap.md +++ b/ferrosa-cluster/specs/roadmap.md @@ -178,8 +178,15 @@ reference/decision specs, and the dependency/usage review. Ordered by value. - **Retire the election-storm safety nets once Jepsen is clean (CL-2).** `election_guard.rs` (W4.11) and `snapshot_pusher.rs` (W4.12) are explicitly - marked for deletion after a clean Jepsen window against the PreVote+CheckQuorum - build. Do not remove before CL-1 closes; track the two-week clean-window gate. + marked for deletion after a clean Jepsen window. Do NOT remove before CL-1 + closes — and note the guard is currently load-bearing, not redundant, because + PreVote is disabled (CL-15): its network transport is unimplemented, so the + build runs CheckQuorum-only. Track the two-week clean-window gate. +- **Implement the PreVote network transport, then re-enable it (CL-15).** + Override `FerrosRaftNetwork::pre_vote` (`raft/network.rs`) and the fork's + `PreCandidate` engine path so `raft_enable_pre_vote` can default back on + (forge t_32cb5ad3). Until then pre-vote only subtracts liveness — see + `specs/implemented/bug-cluster-formation-pre-vote-election-stall.md`. - **Make write backpressure observable and tunable (CL-3).** `WRITE_CONCURRENCY_LIMIT` (128) is a hard constant. Add an admission/queue-depth metric and consider a configurable / per-tenant limit so operators can trade Raft-protection headroom diff --git a/ferrosa-cluster/src/config.rs b/ferrosa-cluster/src/config.rs index 7227961a..da935d5b 100644 --- a/ferrosa-cluster/src/config.rs +++ b/ferrosa-cluster/src/config.rs @@ -57,9 +57,21 @@ pub struct ClusterConfig { /// Raft maximum election timeout in milliseconds. Default: 2000. pub raft_election_timeout_max_ms: u64, /// Whether to enable PreVote (Ongaro §9.6) — ferrosa fork extension per - /// ADR-012. Default: `true` (ferrosa default; upstream openraft 0.9 is - /// `false`). Override with `FERROSA_RAFT_ENABLE_PRE_VOTE=false` to fall - /// back to upstream behavior. + /// ADR-012. Default: `false`. + /// + /// ADR-012 intended this ON, but the pre-vote gate is only half-built: the + /// pinned openraft fork hard-gates the tick election path behind a pre-vote + /// round (`run_pre_vote_round()` calls `RaftNetwork::pre_vote()`), yet + /// `FerrosRaftNetwork` (raft/network.rs) does NOT override `pre_vote`, so the + /// default trait impl returns an "unimplemented" NetworkError that counts as + /// a NO vote. In any multi-voter cluster a pre-vote quorum is therefore + /// structurally impossible: after the seed's single initialize()-driven + /// election at term 1, NO further election can ever fire, and a transient + /// vote loss becomes a PERMANENT formation stall (candidate frozen at + /// term=1). Enabling pre-vote here only SUBTRACTS liveness until the network + /// transport exists. See forge t_b0aac0d3 (root cause) and t_32cb5ad3 (the + /// stalled fork epic that must land the `pre_vote` transport before this + /// flips back on). Override with `FERROSA_RAFT_ENABLE_PRE_VOTE=true`. pub raft_enable_pre_vote: bool, /// CheckQuorum step-down ratio (Ongaro §6.4) — ferrosa fork extension per /// ADR-012. Default: `0.75` (ferrosa default; upstream openraft 0.9 @@ -116,7 +128,7 @@ impl Default for ClusterConfig { raft_heartbeat_ms: 300, raft_election_timeout_min_ms: 3000, raft_election_timeout_max_ms: 6000, - raft_enable_pre_vote: true, + raft_enable_pre_vote: false, raft_check_quorum_ratio: 0.75, per_dc_overrides: BTreeMap::new(), } @@ -309,13 +321,20 @@ mod tests { assert!(config.auto_join); } - /// W3.12 / ADR-012: ferrosa defaults flip the openraft knobs ON. + /// W3.12 / ADR-012: CheckQuorum is on by default; PreVote is intentionally + /// OFF until its network transport exists. #[test] fn default_raft_correctness_knobs_match_adr_012() { let config = ClusterConfig::default(); + // ADR-012 intended PreVote ON, but until FerrosRaftNetwork overrides + // `pre_vote` the fork's tick election gate only SUBTRACTS liveness (any + // multi-voter election becomes structurally unwinnable — forge + // t_b0aac0d3). It stays OFF; election-storm mitigation remains the + // election_guard watchdog, not pre-vote. assert!( - config.raft_enable_pre_vote, - "ADR-012: PreVote must be on by default in ferrosa builds" + !config.raft_enable_pre_vote, + "PreVote must default OFF until FerrosRaftNetwork implements the \ + pre_vote transport (forge t_b0aac0d3 / t_32cb5ad3)" ); assert_eq!( config.raft_check_quorum_ratio, 0.75, diff --git a/specs/implemented/bug-cluster-formation-pre-vote-election-stall.md b/specs/implemented/bug-cluster-formation-pre-vote-election-stall.md new file mode 100644 index 00000000..472c515a --- /dev/null +++ b/specs/implemented/bug-cluster-formation-pre-vote-election-stall.md @@ -0,0 +1,96 @@ +# Bug: cluster formation stalls when pre-vote is enabled without a pre-vote transport + +- **Status**: Fixed (default flipped; guarded by regression test) +- **Component**: `ferrosa-cluster` — Raft formation / election +- **Forge**: t_b0aac0d3 (root cause), t_32cb5ad3 (pre-vote transport — separate, still open) +- **Related**: ADR-012 (PreVote + CheckQuorum), the stalled openraft pre-vote fork epic + +## Symptom + +A fresh 3-node cluster intermittently never elects a leader. The seed +(highest UUID) transitions to cluster mode, calls `raft.initialize()`, reaches +**term 1 as a Candidate**, and then freezes there for the entire formation +window. The `/cluster/topology` endpoint reports `committed_cluster_size: 0` / +`openraft_voters: []` on the peers because no leader ever commits the +membership. Reproduced at roughly 3% under CPU starvation (shared vCPU); CI job +89743146291. + +Crucially the term does **not** climb (this is not the T1→T19 election-storm +signature). It sticks at exactly 1: elections have stopped firing entirely. + +## Timeline evidence + +From the metrics-watch timeline recorder in +`ferrosa-cluster/tests/cluster_formation.rs`, seed with two peers whose rafts +never come up: + +``` ++19401ms [ff..01] term=0 state=Learner vote=Vote{ term:0, node:0 } last_log=None ++19429ms [ff..01] term=1 state=Candidate vote=Vote{ term:1, node:.. } last_log=Some(0) + ... (no further transitions for the rest of the window) ... +``` + +Term reaches 1 via the `initialize()`-driven first election, then never moves. + +## Mechanism (file:line) + +1. `ferrosa-cluster/src/config.rs` defaulted `raft_enable_pre_vote = true` + (ADR-012 intent). +2. The pinned openraft fork's tick election path **hard-gates** + `engine.elect()` behind `run_pre_vote_round()` (fork + `openraft/src/core/raft_core.rs`, the pre-vote round in the tick handler), + which sends `RaftNetwork::pre_vote()` to every voter. +3. `FerrosRaftNetwork` (`ferrosa-cluster/src/raft/network.rs`) implements + `RaftNetwork` (impl at line 250) overriding only `append_entries` (252) and + `vote` (355). It does **not** override `pre_vote`, so the default trait impl + returns an "unimplemented" `NetworkError`. +4. openraft counts that error as a **NO** vote. In any multi-voter cluster a + pre-vote quorum is therefore structurally impossible — every candidate + always loses its pre-vote round, so `elect()` is never reached and no term + advances. +5. The seed reaches term 1 only because `initialize()` seeds the initial + candidate state directly. After that, the election *timer* fires on schedule + but the pre-vote gate suppresses every election. A transient first-round + vote loss (e.g. a peer whose raft is not yet constructed) is then + **permanent** instead of self-healing on the next timeout. + +## Why debug logging hides it + +Verbose `RUST_LOG=openraft=debug` does synchronous, formatted writes on the +raft hot path. That shifts the timing enough that peers' rafts are usually up +before the seed's first vote round, so the initial vote loss doesn't happen and +the stall doesn't reproduce (≈20/20 passes with debug logging vs ~3% failures +without). The tests deliberately use a metrics-watch timeline recorder instead +of debug logging so the election story is captured without perturbing the race. + +## The fix + +Default `raft_enable_pre_vote` to `false` +(`ferrosa-cluster/src/config.rs:131`) until the pre-vote network transport +exists. With the gate off, the fork's tick path calls `elect()` directly, so a +candidate that loses a round simply re-campaigns on the next election timeout +(term climbs 2, 3, …) and a transient vote loss self-heals. + +The `FERROSA_RAFT_ENABLE_PRE_VOTE` env override still works both ways, so a +build that has implemented the transport can opt back in without a code change. + +Regression guard: `candidate_re_campaigns_while_peers_are_down` in +`ferrosa-cluster/tests/cluster_formation.rs`. It starts only the seed, drives it +to a 3-voter `initialize()` with two peers that never come up, and asserts the +seed's `current_term` advances past 1 (election-timer liveness, not +leadership). It fails deterministically with pre-vote enabled and passes with it +disabled. + +## What remains + +- **Pre-vote transport (t_32cb5ad3)**: implement `FerrosRaftNetwork::pre_vote` + (and the fork's `PreCandidate` engine path) so ADR-012's pre-vote can be + turned back on. Until then pre-vote only subtracts liveness; do not re-enable + the default. +- **Election-storm mitigation is unchanged**: the T1→T19 divergence-storm + failure mode is still handled by the `election_guard` watchdog + + `ELECTION_STORM_TERM_JUMPS_TOTAL` counter + (`ferrosa-cluster/src/raft/election_guard.rs`), not by pre-vote. +- **LazyRaft vote-handler backoff**: the 3×5s vote-handler backoff window during + formation still exists, but with elections firing again it is now + self-healing via re-election rather than a permanent stall.